@font-face {
    font-family: "Inter";
    src: url("/fonts/InterDisplay-Regular.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Inter semibold";
    src: url("/fonts/InterDisplay-SemiBold.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Inter bold";
    src: url("/fonts/InterDisplay-Bold.woff2");
    font-display: swap;
}

body, html {
    margin: 0;
    height: 100%;
    font-family: "Inter";
    overflow-y: hidden;
}

.login-layout {
    background: url("/assets/agence.jpg") center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.img-brand-logo {
    margin-top: 50px;
    margin-bottom: 50px;
    width:40%;
}

.brand-logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.middle-column {
    height: 100vh;
    width: 100%;
    max-width: 450px;

    /* effet verre */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);

    /* centrage interne */
    display: flex;
    flex-direction: column;
    justify-content: center; /* centre verticalement */
    padding-left: 40px;
    padding-right: 40px;
}

.welcome {
    font-weight: bold;
    font-size: 2rem;
    margin: 5px;
    color: #11366c;
    text-align: center;
    margin-bottom: 50px;
}

.login-form {
    background-color: #f1f1f1;
    padding: 10%;
    border-radius: 5px;
}

.label {
    color: black;
}

.input-login-form {
    margin-bottom: 5%;
    width: 100%;
    border-radius: 5px;
    padding: 0.5em;
    box-sizing: border-box;
}

.auth-form-btn {
    background-color: #11366c;
    color: #f1f1f1;
}

.auth-form-btn:hover {
    cursor: pointer;
}

.auth-link {
    color: black;
    font-size: 0.8em;
}

.copyright {
    color: #f1f1f1;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .welcome {
        font-size: 1.5rem;
    }
}

.success {
    background-color: #198754;
    border-radius: 10px;
    color: #c9d6e8;
    padding: 15px;
}

.alert-dismissible {
    background-color: crimson;
    border-radius: 10px;
    color: whitesmoke;
    padding: 10px;
    margin-top: 3.5em;
    margin-bottom: 3.5em;
}