@import url("./base.css");

body {
    background-color:  #000;
    background: url("../images/nmw-register-bg.jpg") center/cover no-repeat;
  }


body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5,15,35,0.55);
  }

  main {
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  
    background: linear-gradient(
      180deg,
      rgba(10, 20, 40, 0.65),
      rgba(5, 10, 25, 0.65)
    );
  }

  .app-pre {
    background-color: #000;
  }

  .app-pre .alert {
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.5;
    height: auto;
  }

  .app-pre .app-pane-content .app-panel {
    max-width: none;
    padding: 30px 100px;
  }

.app-pane-header, .app-pane-content, .app-panel {
    background-color: transparent;
}

.app-panel {
    background-color: transparent;
    color: #fff;
}

.app-panel-header {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-transform: none;
    border-bottom: 0px;
    letter-spacing: normal;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
  }

  .app-pane-header .header-logo img {
    height: 60px;
    width: auto;
  }
  
#accountForm .form-group {
   max-width:100%;
}

#accountForm label {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 5px;
}

#accountForm .text-red {
    color: rgba(255, 130, 130, 1);
}

#accountForm .right {
    float: right;
}

#accountForm .help-block {
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

#accountForm .btn-blue {
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    max-width: 168px;
    border: none;
    background: linear-gradient(90deg, #00d4ff, #009ecf);
    color: #fff;
    cursor: pointer;
  }


/* FOOTER */
.footer {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: none;
    }

@media (max-width: 768px) {

    .app-pre .app-pane-content .app-panel {
        max-width: none;
        padding: 30px 10px;
      }

      .header-logo {
        justify-content: center;
      }
}