/* Login and Authentication styles */

body.auth-page {
    background-color: #f6f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.auth-header h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}

.auth-card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.auth-card .card-title {
    color: #333;
    font-weight: 600;
}

.auth-footer {
    color: #6c757d;
    font-size: 0.85rem;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.toggle-password {
    cursor: pointer;
}

/* Password strength meter */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength .progress {
    height: 0.5rem;
}

.strength-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

/* For mobile devices */
@media (max-width: 576px) {
    .auth-card {
        box-shadow: none;
    }
    
    .auth-wrapper {
        padding: 1rem;
    }
}