/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.auth-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #212529;
}

.auth-form .form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 8px 12px;
}

.auth-form .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.auth-form .btn {
    height: 45px;
    font-weight: 500;
    border-radius: 4px;
}

.auth-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.auth-form .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Success Messages */
.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Password Requirements */
.password-requirements {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 0.875rem;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.password-requirements li {
    margin-bottom: 5px;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.invalid {
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 576px) {
    .auth-card {
        padding: 20px;
        margin: 0 15px;
    }
    
    .auth-header h1 {
        font-size: 20px;
    }
    
    .auth-form .form-control,
    .auth-form .btn {
        height: 40px;
    }
} 