/* Style register.php */ 
.contentregister {
    margin-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
}

.register {
    width: 400px;
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: var(--header);
    border-radius: 4px;
    box-shadow: 0px 2px 15px 0px #00000017;
    
}
#h1sinscrire {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

}

.inscription{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

.inscription input[type = "text"],.inscription input[type = "password"]{
    border:0;
    background: var(--fond);
    display: block;
    margin: 12px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 14px;
    width: 280px;
    outline: none;
    color: var(--ecriture);
    border-radius: 4px;
    transition: 0.25s;
    font-size: medium;
}

.inscription input[type = "password"] {
    margin-bottom: 10px;
}
.inscription input[type = "text"]:focus,.inscription input[type = "password"]:focus{
    width: 300px;
    border-color: #2ecc71;
}

.inscription button[type = "submit"]{
    width: 311px;
    background-color: var(--fond);
    display: block;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 14px;
    outline: none;
    color: var(--ecriture);
    border-radius: 4px;
    transition: 0.25s;
    cursor: pointer;
    font-size: medium;
    margin: auto;
    margin-top: 18px;
}
.inscription button[type = "submit"]:hover{
    background: #2ecc71;
    color: white;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/*Fin style register.php*/

/* Style pour modal */
.modal {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow-y: auto;
    z-index: 20;
}

.modal-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 0.5rem;
    overflow-y: auto;
    max-width: 20rem;
}

.content-modal {
    background-color: var(--header);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
}

.content-modal div {
    margin-top: 1rem;
}

.content-modal div button {
    border: 1px solid #6b7280;
    color: #6b7280;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
}

.content-modal div button:hover {
    background-color: #e5e7eb;
}