/*Enregistrement abonnés*/
.register{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4%;
    width: 100%;
    height: 805px;
    background-color: #500614;
    p{
        font-size: 25px;
        margin-bottom: 30px;
    }
}

.register-form {
    background-color: #6D071A;
    padding: 40px;
    border-radius: 10px;
    width: 50%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.register-form label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

.register-form input{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inria', serif;
    color: #333;
}

.register-form input::placeholder{
    color: #999;
}

.btn-envoyer{
    display: flex;
    justify-content: center;
    background-color: #38171f;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    margin-left: auto ;
    margin-right: auto;
    cursor: pointer;
    font-size: 18px;
    color: white;
    font-family: 'Inria', serif;
    transition: 0.3s ease-in-out;
}

.btn-envoyer:hover {
    background-color: #890c23;
}