/* Authentication Page Styles */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-body {
    border-radius: 1rem;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

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

.input-group-text {
    border-radius: 0.5rem 0 0 0.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.btn-primary {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-secondary {
    border-radius: 0 0.5rem 0.5rem 0;
}

.text-primary {
    color: #0d6efd !important;
}

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

.alert {
    border-radius: 0.5rem;
    border: none;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #0f5132;
}

/* Loading animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive design */
@media (max-width: 576px) {
    .card-body {
        padding: 2rem 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Animation for form elements */
.form-control,
.btn {
    transition: all 0.3s ease;
}

.form-control:hover {
    border-color: #adb5bd;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Password toggle button */
#togglePassword {
    cursor: pointer;
}

#togglePassword:hover {
    background-color: #e9ecef;
}
