﻿/* Global Styles */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

/* Form Card */
.card {
    /*max-width: 500px;*/
    margin: auto;
    border-radius: 10px;
}

/* Form Labels */
.form-label {
    font-weight: bold;
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

/* Spacing */
.d-flex {
    justify-content: space-between;
}

.slider-image {
    width: 100%; /* Ensures full width */
    height: 600px; /* Fixed height */
    object-fit: cover; /* Ensures the image covers the container without distortion */
}
/* Blinking animation */
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

/* Define the blink effect */
@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}