/* Center content vertically and horizontally */
.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 24px; /* Increase font size for logo and title */
}

/* Logo style */
.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 150px; /* Adjust the width of the logo image */
    height: auto;
}

/* Title style */
.title {
    margin-bottom: 20px;
    margin-left: 10px;
    font-size: 48px; /* Increase font size for the title */
    color: #858796; /* Choose your desired color */
}

/* Button style */
#butonsignin {
    padding: 15px 30px; /* Increase padding for the button */
    background-color: #4e73df; /* Choose your desired color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 24px; /* Increase font size for the button */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#butonsignin:hover {
    background-color: #224abe; /* Darker shade of the primary color */
}

.milieuconnexion {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .center-content {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .center-content {
        flex-direction: column; /* Change flex direction for smaller screens */
    }

    .logo img {
        width: 100px; /* Adjust logo size for smaller screens */
    }

    .title {
        font-size: 36px; /* Adjust title font size for smaller screens */
    }

    #butonsignin {
        padding: 10px 20px; /* Adjust button padding for smaller screens */
        font-size: 18px; /* Adjust button font size for smaller screens */
    }
}
