body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#backgroundCarousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.login-card {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.fa {
    margin-right: 10px;
    color: #007bff;
}

.text-center p {
    margin: 5px 0;
}

.text-center a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.text-center a:hover {
    color: #0056b3;
}

.position-relative {
    position: relative;
}

.toggle-password {
    cursor: pointer;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #007bff;
}
