body {
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6%;
}

.card-body {
    padding: 0;
}

.auth-container {
    display: flex;
    min-height: 600px;
}

.auth-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.auth-form {
    flex: 1;
    padding: 2rem;
}

.btn-primary {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
}

.form-control {
    padding: 0.6rem 1rem;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.alert {
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

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

.text-decoration-none:hover {
    color: #0a58ca;
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-image {
        min-height: 200px;
    }
} 