/* Authentication pages styling */

/* Background gradient */
body.bg-light {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%) !important;
    background-attachment: fixed !important;
}

/* Card styling */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    border-bottom: none;
}

/* Form controls */
.form-control {
    border-radius: 0.25rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
}

/* Login/Register buttons */
.btn-primary {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Links */
a.text-decoration-none {
    font-weight: 500;
    transition: color 0.2s;
}

/* Animation for card */
.card.shadow {
    animation: cardAppear 0.5s ease-out;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}