.register.background {
    position: relative;
    z-index: 0;
    background-color: #8BB2C960;
    padding: 1.5rem 0;
    background-image: linear-gradient(180deg, rgba(139, 178, 201, 0.1) 0%,rgba(139, 178, 201, 0.1) 100%), url(/img/index/categorie-background.png)!important;
}

.register .content {
    max-width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
}

.register .box-titre {
    text-align: center;
    margin-bottom: 1rem;
}

.register legend {
    border-bottom: 1px solid var(--color-background);
}

.register .btn-register {
    font-size: 1.2rem;
    color: var(--color-bleu-light);
    border-radius: 10px;
    border: 1px solid var(--color-bleu-light);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease-in-out;
}

.register .btn-register:hover {
    color: white;
    background: var(--color-bleu-strong);
    transition: all 0.2s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 1200px) { /* xl */
    .register .content {
        max-width: 60%;
    }
}

@media (max-width: 992px) { /* lg */
    .register .content {
        max-width: 70%;
    }
}

@media (max-width: 768px) { /* md */
    .register .content {
        max-width: 80%;
    }
}

@media (max-width: 576px) { /* sm */
    .register .content {
        max-width: 90%;
    }
}
