/* Background image */
body {
    background-image: url("/images/login.jpg"); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Overlay for readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: fadeIn 0.5s ease-in-out;
}

/* Content styling */
.content {
    position: relative;
    z-index: 2;
    color: white; /* Ensuring text is readable */
    animation: fadeIn 0.5s ease-in-out;
}

h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in-out;
}

/* Styling for card (login box) */
.card {
    background: rgba(255, 255, 255, 0.9); /* Slight transparency */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

/* Form fields animation */
.form-outline {
    animation: fadeIn 0.5s ease-in-out;
}

/* Button animation */
.btn-primary {
    animation: fadeIn 0.5s ease-in-out;
}