body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: roboto;
    background-color: #141414 !important;
}

.header-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-img .header-logo {
    max-width: 656px;
    margin-top: 20px;
    border-radius: 12px;
}

.title-home {
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    margin: 40px auto;
    color: #fef7e5;
}

.ident-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(254, 247, 229, 0.1);
    overflow: hidden;

    max-width: 650px;
    width: 100%;
    max-height: 470px;
    height: 100%;
    margin: 0 auto;
}

.ident-grid .left-form {
    order: 2;
    flex: 0 0 40%;
    max-width: 40%;
}

.ident-grid .right-image {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #000;
}

.ident-grid .right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ident-grid .left-form .form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
}

.ident-grid .left-form .form-container .title {
    margin-bottom: 12px;
}

.ident-grid .left-form .form-container input[type="password"] {
    width: 100%;
    height: 25px;
    max-width: 320px;
    border: 1px solid;
    border-radius: 3px;
    padding-left: 5px;
}

.ident-grid .btSubmit {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
}

#erreurPreHome {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.content-logo-see {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

#svgLogoSeetickets {
    width: 200px;
}

@media (max-width: 685px) {

    .title-home {
        margin: 40px 20px;
    }

    .header-img .header-logo {
        max-width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    .ident-grid {
        display: block;
        width: 320px;
        max-height: 100%;
    }

    .ident-grid .left-form {
        width: 100%;
        max-width: 100%;
    }

    .ident-grid .right-image {
        max-width: 100%;
        height: 320px;
    }

    .ident-grid .left-form .form-container input[type="password"] {
        max-width: 180px;
    }

    .ident-grid .btSubmit {
        padding: 12px 45px;
    }
}