body {
    font-family: 'Montserrat', sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0074D9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}


.login-left {
    flex: 1;
    background-color: blue;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0px;
}

.text-green {
    color: green;
}

.text-gray {
    color: gray;
}


.login-left .home-button {
    margin: 0 50px 20px;
}

.login-left .home-button:hover {
    background-color: blue;
    border: 1px solid #fff;
    color: #fff;
    transition-duration: 0.3s;
}

.login-left .titre {
    padding-left: 50px;
    color: #FFF;
    padding-top: 150px;
    font-size: 75px;
}

.login-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.border-text {
    font-family: Poppins;
    color: transparent;
    -webkit-text-stroke: 2px #FFF;
    text-stroke: 2px #FFF;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}


.full-width-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    width: 100%;
    height: 250px;
    background-color: blue;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

.form-container {
    width: 80%;
    margin-top: 30px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stats-block {
    width: calc(25% - 20px);
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.stats-block:hover {
    background-color: #f0f0f0;
}

.stats-count {
    font-size: 24px;
    font-weight: bold;
}

.stats-label {
    font-size: 14px;
    color: #555;
}
