.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background: #faf8f4;
}

footer, .topbar, header {
    display: none !important;
}

.auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 350px;
    width: 100%;
    padding: 1.5rem 0;
}

.auth-header {
    text-align: center;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid #eee2c8;
}

.auth-header h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.auth-header p {
    color: #7c8b90;
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.3rem;
}

.form-control {
    width: 100%;
    border: 1.5px solid #e6dcc0;
    border-radius: 9px;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #1b1b1a;
}

.btn-primary-custom {
    background: #1b1b1a;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary-custom:hover {
    background: #333;
}

.btn-primary-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.input-otp-group {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    direction: ltr;
}

.input-otp-group .otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1.5px solid #e6dcc0;
    border-radius: 9px;
    background: #fff;
}

.input-otp-group .otp-input:focus {
    border-color: #1b1b1a;
}

.timer-text {
    text-align: center;
    color: #7c8b90;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.resend-link {
    color: #1b1b1a;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
}

.resend-link:hover {
    color: #333;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1rem 0;
    }

    .input-otp-group .otp-input {
        width: 40px;
        height: 50px;
        font-size: 1.2rem;
    }
}