/*------------------------------------------------------------------------------------
-------------------------------------- Globlal ---------------------------------------
------------------------------------------------------------------------------------*/

/* Body */
body {
    background-color: #242424;
    padding: 20px;
    margin: 0px;
    gap: 30px;
    height: 95.8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
}

/* Mobile */

@media (max-width: 500px) {
    body {
        flex-direction: column;
        overflow-y: auto;
    }
}

/*------------------------------------------------------------------------------------
-------------------------------------- Image -----------------------------------------
------------------------------------------------------------------------------------*/

.login_img_section {
    width: 60%;
    height: 100%;
}
.login_img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

/*------------------------------------------------------------------------------------
-------------------------------------- Info ------------------------------------------
------------------------------------------------------------------------------------*/

.login_info {
    width: 40%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 500px) {
    .login_info {
        width: 100%;
    }
}

/* Logo et titre */

.login_logo_titre {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Logo */

.login_logo {
    height: 200px;
}

/* Titre */

.login_titre {
    font-family: 'Nunito';
    color: white;
    font-size: 60px;
    font-weight: 800;
    text-align: center;
}

.login_titre_p {
    font-family: 'Poppins';
    color: white;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 500px) {
    .login_titre {
        font-size: 40px;
        margin-top: 0px;
    }
    .login_titre_p {
        font-size: 20px;
    }
    .login_logo {
        height: 150px;
    }
}

/*------------------------------------------------------------------------------------
-------------------------------------- Input -----------------------------------------
------------------------------------------------------------------------------------*/

.login_input_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 75%;
    gap: 30px;
}

/* Input */

.login_input {
    width: 100%;
    padding: 20px;
    background-color: #045DAA;
    border-width: 0px;
    border-radius: 99px;
    color: white;
    outline: none;
    font-size: 25px;
}

/* Input text */

.login_input::placeholder {
    color: white;
    font-family: 'Poppins';
}

/*------------------------------------------------------------------------------------
-------------------------------------- Button ----------------------------------------
------------------------------------------------------------------------------------*/

.login_btn_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

@media (max-width: 500px) {
    .login_btn_div {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* Button */

.login_btn {
    padding: 20px;
    border-width: 0px;
    border-radius: 99px;
    width: 100%;
    background-color: #FFD440;
    color: #045DAA;
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 30px;
    transition-duration: 0.3s;
}

.login_btn:hover {
    cursor: pointer;
    background-color: #045DAA;
    color: #FFD440;
}

/* Text refuse */

.login_refuse {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 15px;
    transition-duration: 0.3s;
    color: red;
    display: none;
}

/* Refuse */

.login_refuse_on {
    display: block;
}