body {
    /*background: url("../images/loginjr.png");
    background-size: cover;*/
    background: url("../images/Sans titre-1.png") no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: center;
    height: 100vh;
    margin: 0;
    /*position: relative; /* Needed for absolute positioning */
    /*padding-right: 250px; /* Ensure space for the modal */
}

.modal-login {
    color: #636363;
    width: 500px;
    /*max-width: 100%;
    margin: 30px;
    position: absolute;
    /*right: 15%; /* Position from the right */
}

.modal-login .modal-content {
    padding: 60px;
    border-radius: 15px;
    border: none;
    /*background-color: #ffffffe3;*/
}

.modal-login .modal-header {
    border-bottom: none;
    position: relative;
    justify-content: center;
}

.modal-login h4 {
    text-align: center;
    font-size: 36px;
}

.modal-login .form-group {
    position: relative;
}

.modal-login i {
    position: absolute;
    left: 13px;
    top: 11px;
    font-size: 22px;
}

.modal-login .form-control {
    padding-left: 40px;
}

.modal-login .form-control, .modal-login .btn {
    min-height: 40px;
    border-radius: 30px;
}

.modal-login .btn {
    border: none;
    line-height: normal;
}

.modal-login .btn:hover, .modal-login .btn:focus {
    background: #007ACC;
}

.color {
    background: #4b5465;
}

.center-container {
    padding: 30px;
    text-align: center;
}

.logo-button {
    display: inline-block;
    padding: 10px;
    background-color: #fff; /* Couleur de fond du bouton */
    border-radius: 5px; /* Coins arrondis */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Effet d'ombre */
    transition: box-shadow 0.3s ease; /* Transition douce pour l'ombre */
}

.logo-button:hover {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* Effet d'ombre au survol */
}

/* Media Query for screens smaller than 1600px */
@media (max-width: 1250px) {
    body {
        background: url("../images/Sans titre-1.png") no-repeat;
        background-size: cover;
    }

    .modal-login {
        width: 40%;
        /*margin: 25%;
        right: 0px; /* Adjust for smaller screens */
    }
}

/* Media Query for mobile devices */
@media (max-width: 768px) {
    body {
        background: url("../images/Sans titre-1.png") no-repeat;
        background-size: cover;
    }

    .modal-login {
        width: 90%;
        margin: 5%;
        right: 0px; /* Adjust for smaller screens */
    }
}
