﻿body {
    background: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #28a745;
}

button.btn-success {
    background-color: #28a745;
    border: none;
}

    button.btn-success:hover {
        background-color: #218838;
    }

/*#login-logo {
    width:200px;
    height: auto;
}*/

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-base {
    width: 200px;
    height: auto;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
    margin-bottom:5px;
}


.carousel-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.carousel {
    height: 100%;
    width: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-item {
    display: none;
    transition: opacity 1s ease;
}

    .carousel-item.active {
        display: block;
    }
