.auth-intro {
  margin: -4px 0 24px;
  color: #8fa6ce;
  line-height: 1.6;
}
.signup-form {
  display: grid;
  gap: 17px;
}
.auth-field {
  display: grid;
  gap: 7px;
}
.auth-field label,
.otp-form label {
  color: #b6c7e7;
  font-size: 12px;
  font-weight: 700;
}
.auth-field input,
.otp-input {
  width: 100%;
  border: 1px solid rgba(148, 179, 232, 0.18);
  border-radius: 13px;
  background: rgba(3, 9, 21, 0.78);
  color: #fff;
  outline: 0;
}
.auth-field input {
  min-height: 48px;
  padding: 0 14px;
}
.auth-field input:focus,
.otp-input:focus {
  border-color: rgba(83, 179, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(66, 153, 255, 0.1);
}
.password-help {
  color: #7286a9;
  font-size: 11px;
  line-height: 1.5;
}
.password-help ul {
  margin: 6px 0 0 18px;
  padding: 0;
}
.field-error {
  color: #ff8f9d;
  font-size: 11px;
}
.captcha-box {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(130, 166, 225, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}
.captcha-copy {
  display: grid;
  gap: 4px;
}
.captcha-copy strong {
  color: #ecf5ff;
  font-size: 13px;
}
.captcha-copy span,
.captcha-warning {
  color: #7e92b6;
  font-size: 11px;
}
.captcha-warning {
  color: #ffb174;
}
.auth-trust-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: #9bb8e6;
  font-size: 13px;
}
.verify-shell {
  min-height: calc(100vh - 150px);
  padding: 72px 20px;
  display: grid;
  place-items: center;
}
.verify-card {
  width: min(100%, 570px);
  padding: 38px;
  border: 1px solid rgba(135, 168, 225, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(62, 162, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(145deg, rgba(13, 25, 51, 0.98), rgba(5, 11, 24, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}
.verify-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(72, 164, 255, 0.1);
  color: #7bd5ff;
  font-size: 24px;
}
.verify-card h1 {
  margin: 10px 0;
  color: #fff;
  font-size: clamp(30px, 5vw, 44px);
}
.verify-lead {
  color: #94a9cd;
  line-height: 1.7;
}
.otp-form {
  display: grid;
  gap: 14px;
}
.otp-input {
  height: 72px;
  padding: 0 18px;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.42em;
}
.otp-meta {
  display: flex;
  justify-content: space-between;
  color: #758aac;
  font-size: 11px;
}
.resend-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #8397ba;
  font-size: 12px;
}
.resend-button {
  border: 0;
  background: transparent;
  color: #69c9ff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.resend-button:disabled {
  color: #657490;
  cursor: not-allowed;
}
.verify-note {
  margin: 24px 0 0;
  color: #637593;
  font-size: 11px;
  line-height: 1.65;
}
@media (max-width: 700px) {
  .verify-shell {
    padding: 35px 14px;
  }
  .verify-card {
    padding: 26px 20px;
  }
  .otp-meta,
  .resend-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   FORDPIXEL SIMPLE CAPTCHA
   ========================================================= */

.simple-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}


.simple-captcha-code {
    position: relative;

    min-width: 190px;
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    overflow: hidden;

    border:
        1px solid
        rgba(83, 181, 255, .28);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(17, 50, 103, .32),
            rgba(4, 12, 28, .98)
        );

    color: #7bd7ff;

    font-size: 27px;

    font-weight: 900;

    letter-spacing: .30em;

    text-align: center;

    user-select: none;

    text-shadow:
        0 0 18px
        rgba(66, 185, 255, .32);
}


.simple-captcha-code::before {
    content: "";

    position: absolute;

    width: 130%;

    height: 1px;

    left: -15%;

    top: 50%;

    transform:
        rotate(-7deg);

    background:
        rgba(
            255,
            255,
            255,
            .12
        );
}


.simple-captcha-code::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 20px,
            rgba(
                255,
                255,
                255,
                .025
            ) 21px
        );
}


.captcha-refresh {
    min-height: 52px;

    padding:
        0 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );

    border-radius:
        12px;

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    color:
        #a6bce0;

    font-size:
        12px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        .2s ease;
}


.captcha-refresh:hover {
    color:
        #ffffff;

    border-color:
        rgba(
            87,
            188,
            255,
            .30
        );

    background:
        rgba(
            72,
            161,
            255,
            .08
        );
}


.captcha-input-wrap {
    width:
        100%;
}


.captcha-input {
    width:
        100%;

    min-height:
        50px;

    padding:
        0 15px;

    border:
        1px solid
        rgba(
            148,
            179,
            232,
            .18
        );

    border-radius:
        13px;

    background:
        rgba(
            3,
            9,
            21,
            .78
        );

    color:
        #ffffff;

    outline:
        none;

    font-size:
        17px;

    font-weight:
        800;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.captcha-input:focus {
    border-color:
        rgba(
            83,
            179,
            255,
            .72
        );

    box-shadow:
        0 0 0 4px
        rgba(
            66,
            153,
            255,
            .10
        );
}


.captcha-input.captcha-valid {
    border-color:
        rgba(
            55,
            211,
            138,
            .62
        );

    box-shadow:
        0 0 0 4px
        rgba(
            55,
            211,
            138,
            .08
        );
}


.captcha-input.captcha-invalid {
    border-color:
        rgba(
            255,
            90,
            112,
            .68
        );

    box-shadow:
        0 0 0 4px
        rgba(
            255,
            90,
            112,
            .08
        );
}


.captcha-success {
    color:
        #66dda3;

    font-size:
        11px;

    font-weight:
        700;
}


.captcha-error {
    color:
        #ff8799;
}


@media (
    max-width: 600px
) {

    .simple-captcha-wrap {
        align-items:
            stretch;

        flex-direction:
            column;
    }


    .simple-captcha-code {
        width:
            100%;
    }


    .captcha-refresh {
        width:
            100%;
    }

}