body {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.auth-header {
    background-color: transparent;
    padding: 2rem 2rem 1rem;
    border-bottom: none;
    text-align: center;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6c757d;
    font-size: 0.875rem;
}

.auth-body {
    padding: 1rem 2rem 2rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #444;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

.btn-auth {
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.auth-footer a {
    color: #0d6efd;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.brand-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}
