/*
 * CSS for Authentication Pages (Login & Register)
 */

/* Use a class on the body to apply these styles only where needed */
.auth-page {
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    min-height: 100vh;
    background-color: #eef2f6; /* A slightly softer, modern background color */
    font-family: 'Inter', sans-serif; /* A nice, clean font (optional, add Google Font link if used) */
}

.auth-container {
    width: 100%;
    max-width: 450px; /* A bit wider for the registration form */
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #dee2e6;
}

.auth-container .auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-container .auth-header h2 {
    font-weight: 700;
    color: #212529;
    font-size: 1.75rem;
}

.auth-container .auth-header p {
    color: #6c757d;
    font-size: 0.95rem;
}

.form-floating label {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
}

.form-control {
    min-height: 50px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

.btn-primary {
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.auth-footer-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-footer-link a {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}