/* ========== GLOBAL ========== */
body {
    background-color: #f5f6fa;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== CARD ========== */
.auth-card {
    width: 400px;
    padding: 30px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.auth-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ========== LOGO ========== */
.auth-logo {
    width: 250px;
    margin-bottom: 20px;
}

/* ========== INPUTS ========== */
.auth-input {
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 0 15px;
}

.auth-input:focus {
    outline: none;
    border-color: #007bff;
}

/* OTP inputs */
.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 20px;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.otp-input:focus {
    border-color: #007bff;
    outline: none;
}

/* ========== BUTTON ========== */
.auth-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: #2b51e0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-btn:hover {
    background-color: #0069d9;
}

/* ========== FEEDBACK ========== */
.auth-error {
    display: block;
    font-size: 14px;
    color: #dc3545;
    margin-bottom: 10px;
    text-align: left;
}

/* ========== QR CODE ========== */
.qr-container {
    margin-bottom: 15px;
}
