body#background {
    background-image: url("/assets/images/background_1280.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body#background::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajuste le dernier nombre (0.5) pour régler l'opacité du fond */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.form-message-wrapper {
    border-radius: 0;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

#content {
    display: flex;
    column-gap: 22%;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 100%;
    padding-right: 10%;
    color: #000000; /* Couleur du texte */
}

button.btn-link {
    width: auto;
    height: auto;
    padding: 0;
}

#content > svg {
    width: 250px;
    height: 100px;
    transform: translateX(-100px);
}

a:hover,
a:active,
button.btn-link:hover,
button.btn-link:active {
    text-decoration: underline;
}

form,
form a {
    color: #FFF;
}

form {
    max-width: 400px;
    padding: 0;
    border-radius: .5rem;
    background-color: #11111133;
    -webkit-backdrop-filter: blur(107px);
    backdrop-filter: blur(107px);
    font-size: 1.4rem;
}

.form-inner {
    padding: 3rem 5rem 5rem;
}

form h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

form p {
    margin: 2rem 0;
    line-height: 1.5;
}

form .form-field-wrapper {
    margin-bottom: 1rem;
}

form .form-field-error-message {
    margin-top: 5px;
}

.login-form .form-footer {
    text-align: center;
}

.resend-token,
button.submit-token {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

button.submit-token {
    transform: translateX(calc(100% - 5rem));
}

.new-password-section {
    margin-top: 2rem;
}

.user {
    margin: 2rem 0;
}

.user .user-infos {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.form-footer {
    margin-top: 3rem;
    text-align: center;
}

.close-button {
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
}

@media screen and (max-width: 1366px) {
    boby#background {
        background-image: url('/assets/images/background.webp');
    }
}