html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

/* Carousel Styling */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Individual Background Images */
.carousel-item:nth-child(1) {
    background-image: url("assets/fv4.png");
}

.carousel-item:nth-child(2) {
    background-image: url("assets/sc3.png");
}

.carousel-item:nth-child(3) {
    background-image: url("assets/salem3.png");
}

.carousel-item:nth-child(4) {
    background-image: url("assets/fp3.png");
}

.content-container {
    z-index: 2;
}

/* Login Box Styling */
.cover-page {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

/* Error Message Box */
.error-message {
    background-color: rgba(255, 0, 0, 0.1);
    color: red;
    border: 1px solid red;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
}

/* Title Styling */
.title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}