/* RADIOBG AUTH V1 */

.auth-body {
  min-height: 100vh;
  margin: 0;
  color: #eef3ff;
  background:
    radial-gradient(circle at 15% 10%, rgba(63,57,155,.25), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(22,120,225,.17), transparent 32%),
    #090611;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.auth-brand {
  color: #fff;
  font-size: 26px;
  text-decoration: none;
}

.auth-brand span {
  color: #5dbeff;
}

.auth-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-navigation a {
  color: #c8d1e7;
  text-decoration: none;
  font-weight: 750;
}

.auth-navigation a:hover {
  color: #6cc6ff;
}

.auth-navigation span {
  width: 1px;
  height: 22px;
  background: rgba(135,153,195,.55);
}

.auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  padding: 45px 18px 90px;
}

.auth-card {
  width: min(560px, 100%);
  box-sizing: border-box;
  padding: 42px;
  border: 1px solid rgba(110,141,206,.28);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(34,24,62,.97), rgba(13,11,30,.98));
  box-shadow: 0 35px 80px rgba(0,0,0,.38);
}

.auth-introduction {
  margin-bottom: 28px;
  text-align: center;
}

.auth-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #61c2ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.auth-introduction h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 8vw, 56px);
}

.auth-introduction p {
  margin: 15px auto 0;
  color: #9eabc7;
  line-height: 1.65;
}

.auth-form {
  display: grid;
  gap: 17px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field > span {
  color: #d8e0f3;
  font-size: 14px;
  font-weight: 760;
}

.auth-field input {
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(119,143,196,.28);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  background: rgba(8,9,23,.72);
  font: inherit;
}

.auth-field input:focus {
  border-color: #55b9ff;
  box-shadow: 0 0 0 3px rgba(57,157,236,.15);
}

.auth-field small {
  color: #77849f;
  font-size: 12px;
}

.auth-submit {
  min-height: 52px;
  border: 1px solid #72caff;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #1686ed, #1758ba);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.auth-message {
  margin-bottom: 20px;
  padding: 15px 17px;
  border-radius: 12px;
  line-height: 1.5;
}

.auth-message-error {
  border: 1px solid rgba(255,103,128,.42);
  background: rgba(157,35,65,.18);
}

.auth-message-success {
  border: 1px solid rgba(70,218,153,.42);
  background: rgba(26,139,93,.18);
}

.auth-footer-link {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: #8793ae;
}

.auth-footer-link a {
  color: #64c4ff;
  text-decoration: none;
  font-weight: 800;
}

.auth-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 650px) {
  .auth-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    padding: 18px 0;
  }

  .auth-main {
    min-height: auto;
    padding: 25px 12px 65px;
  }

  .auth-card {
    padding: 30px 18px;
    border-radius: 21px;
  }
}

/* END RADIOBG AUTH V1 */
