/* ========================= */
/* 🌌 PANEL */
/* ========================= */

.verify-panel {

    min-height: 100vh;

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

    padding: 40px 20px;

    background: #0a0a0a;

    position: relative;
    overflow: hidden;
}

/* GLOW */
.verify-panel::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
        rgba(122,0,255,0.18),
        transparent 70%);

    filter: blur(90px);

    top: -150px;
    right: -150px;
}

/* CARD */

.verify-card {

    width: 100%;
    max-width: 500px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(16px);

    border-radius: 20px;

    padding: 50px 40px;

    position: relative;
    z-index: 2;
}

/* TAG */

.verify-tag {

    color: #7a7a7a;
    font-size: 0.9rem;
}

/* TITULO */

.verify-card h1 {

    font-size: 2.3rem;

    margin:
        15px 0;
}

/* TEXTO */

.verify-card p {

    color: #999;

    line-height: 1.6;

    margin-bottom: 30px;
}

/* INPUT */

.input-group {

    margin-bottom: 20px;
}

.input-group input {

    width: 100%;

    background: #111;

    border: 1px solid #222;

    border-radius: 10px;

    padding: 16px;

    color: white;

    font-size: 1rem;

    outline: none;

    transition: 0.3s ease;
}

.input-group input:focus {

    border-color: #7a00ff;

    box-shadow:
        0 0 20px rgba(122,0,255,0.2);
}

/* BTN */

#sendCodeBtn {

    width: 100%;

    background:
        linear-gradient(45deg,#00c3ff,#7a00ff);

    border: none;

    padding: 16px;

    border-radius: 10px;

    color: white;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

#sendCodeBtn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(122,0,255,0.35);
}

/* DISABLED */

#sendCodeBtn:disabled {

    opacity: 0.6;
    cursor: not-allowed;
}

/* STATUS */


#statusMessage {

    margin-top: 20px;

    font-size: 0.95rem;
}

/* SUCCESS */

.success {

    color: #00d26a;
}

/* ERROR */

.error {

    color: #ff4d4d;
}



/* MOBILE */

@media(max-width:768px){

    .verify-card {

        padding: 40px 25px;
    }

    .verify-card h1 {

        font-size: 2rem;
    }
}

/* ========================= */
/* MODAL OTP */
/* ========================= */

.otp-modal {

    position: fixed;
    inset: 0;

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

    padding: 24px;

    z-index: 50;
}

.otp-modal.is-active {

    display: flex;
}

.otp-backdrop {

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.74);
    backdrop-filter: blur(10px);
}

.otp-container {

    width: 100%;
    max-width: 430px;

    position: relative;
    z-index: 1;

    background: #101010;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    padding: 34px 28px 30px;

    box-shadow:
        0 24px 80px rgba(0,0,0,0.45),
        0 0 45px rgba(122,0,255,0.18);
}

.otp-close {

    position: absolute;
    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;

    background: #171717;
    color: #fff;

    cursor: pointer;
}

.otp-header {

    margin-bottom: 24px;
}

.otp-badge {

    display: inline-flex;

    margin-bottom: 12px;
    padding: 7px 10px;

    border: 1px solid rgba(0,195,255,0.22);
    border-radius: 999px;

    color: #86e4ff;
    background: rgba(0,195,255,0.08);

    font-size: 0.78rem;
    font-weight: 600;
}

.otp-header h2 {

    margin: 0 0 10px;

    color: #fff;
    font-size: 1.7rem;
}

.otp-header p {

    margin: 0;

    color: #aaa;
    line-height: 1.6;
}

.otp-input-wrapper {

    margin-bottom: 14px;
}

.otp-input-wrapper input {

    width: 100%;

    padding: 18px;

    border: 1px solid #252525;
    border-radius: 12px;

    background: #080808;
    color: #fff;

    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 8px;

    outline: none;
}

.otp-input-wrapper input:focus {

    border-color: #00c3ff;
    box-shadow: 0 0 22px rgba(0,195,255,0.16);
}

.otp-status {

    min-height: 22px;
    margin-bottom: 16px;

    font-size: 0.92rem;
}

.otp-status.error {

    color: #ff4d4d;
}

.otp-status.success {

    color: #00d26a;
}

.otp-actions {

    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.otp-btn-primary,
.otp-btn-secondary {

    width: 100%;

    border: none;
    border-radius: 10px;

    padding: 14px 16px;

    color: #fff;

    font-size: 0.98rem;
    font-weight: 700;

    cursor: pointer;
}

.otp-btn-primary {

    background: linear-gradient(45deg,#00c3ff,#7a00ff);
}

.otp-btn-secondary {

    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
}

.otp-btn-primary:disabled,
.otp-btn-secondary:disabled {

    opacity: 0.6;
    cursor: not-allowed;
}
