/* ================================
 Feelux OTP Login – Pro UX
================================ */

.feelux-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    padding: 16px;
}

.feelux-login-page {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    text-align: center;
}

.feelux-logo {
    font-size: 28px;
    font-weight: 800;
    color: #00bfd6;
    margin-bottom: 20px;
}

.subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ---------- Input ---------- */
.step input[type="email"],
.step input[type="text"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    margin-bottom: 16px;
}

/* ---------- OTP Boxes ---------- */
.otp-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    direction: ltr;
    margin-bottom: 20px;
}

.otp-boxes input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.otp-boxes input:focus {
    border-color: #00bfd6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,191,214,.15);
}

/* ---------- Buttons ---------- */
.feelux-login-page button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

#send_otp,
#verify_otp {
    background: #00bfd6;
    color: #fff;
}

#send_otp:disabled,
#verify_otp:disabled {
    opacity: .6;
    cursor: not-allowed;
}

#resend_otp {
    margin-top: 8px;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
}

/* ---------- Timer ---------- */
.otp-timer {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* ---------- Message ---------- */
.otp-message {
    min-height: 22px;
    font-size: 14px;
    margin-top: 8px;
}

.otp-message.success { color: #16a34a; }
.otp-message.error   { color: #dc2626; }

/* ---------- Mobile ---------- */
@media (max-width: 480px) {
    .feelux-login-page {
        border-radius: 0;
        min-height: 100vh;
        justify-content: center;
    }
}
