/* ============================================================================
   Mobile OTP auth page (login / register)
   All styling lives here — no inline or internal CSS.
   Brand: primary #ff6a3a, secondary #fa9170.
   ========================================================================== */

.kc-auth {
    --kc-primary: #ff6a3a;
    --kc-secondary: #fa9170;

    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 120px;
    color: #e7e7ea;
}

body {
    background: #262626 !important;
}

.kc-auth .box {
    margin-top: 32px;
    width: 100%;
    max-width: 430px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 42px 38px;
}

.kc-auth .ic {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 106, 58, 0.12);
    color: var(--kc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.kc-auth h1 {
    font-size: 26px;
    margin: 0 0 8px;
}

.kc-auth p.sub {
    color: #9a9aa3;
    margin-bottom: 26px;
    font-size: 15px;
}

.kc-auth label {
    display: block;
    font-size: 14px;
    color: #c4c4cc;
    margin-bottom: 8px;
}

.kc-auth input {
    width: 100%;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.kc-auth input:focus {
    border-color: var(--kc-primary);
}

.kc-auth input.otp {
    text-align: center;
    letter-spacing: 0.5em;
    font-size: 22px;
}

.kc-auth .btn {
    width: 100%;
    margin-top: 18px;
    background: var(--kc-primary);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.kc-auth .btn:hover {
    background: var(--kc-secondary);
}

.kc-auth .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.kc-auth .links {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 14px;
}

.kc-auth .links button {
    background: 0;
    border: 0;
    color: var(--kc-primary);
    cursor: pointer;
    padding: 0;
}

.kc-auth .links button:hover {
    color: var(--kc-secondary);
}

.kc-auth .note {
    font-size: 14px;
    margin-top: 14px;
}

.kc-auth .note.err {
    color: #f87171;
}

.kc-auth .note.ok {
    color: #4ade80;
}

.kc-auth .legal {
    color: #6b6b74;
    font-size: 12px;
    margin-top: 22px;
    text-align: center;
}
