
div[data-sf-role="sf-login-form-container"] {
    display: flex;
    flex-direction: column;
    align-content: center;
}

div[data-sf-role="sf-login-form-container"] > div[data-sf-role="form-container"] {
    display: none;
}
div[data-sf-role="sf-login-form-container"] > div[data-sf-role="form-container"] + h3 {
    display: none;
}

.-sf-openidconnect-button {
    text-align: center;
}

.login-wrapper .flex-wrapper {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto;
}

.login-wrapper .flex-wrapper .left-wrapper {
    position: relative;
    width: 100%;
    background: #2F2D56;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.login-wrapper .flex-wrapper .left-wrapper .img-wrapper {
    padding: 58px;

}
.login-wrapper .flex-wrapper .left-wrapper img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    max-width: 600px;
    display: block;
}

.login-wrapper .flex-wrapper .right-wrapper {
    position: relative;
    background: #DBD8CD;
    width: 100%;
}

.login-wrapper .flex-wrapper .right-wrapper .header-wrapper {
    background: #813960;
}

.login-wrapper .flex-wrapper .right-wrapper .header-wrapper .logo-wrapper {
    text-align: right;
    padding: 45px 115px;
}

.login-wrapper .flex-wrapper .right-wrapper .header-wrapper .logo-wrapper img {
    max-width: 414px;
    width: 100%;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper {
    /* position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 58px; */
    position: relative;
    width: 100%;
    max-width: 555px;
    height: 100%;
    max-height: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.login-wrapper .flex-wrapper .right-wrapper img {
    width: 100%;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper h1 {
    font-size: 76px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper h2 {
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}


.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form {

    
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .fields-wrapper input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    box-sizing: border-box;
    padding: 15px 0;
    color: #000000;
    font-size: 16px;
    user-select: none;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .fields-wrapper input::placeholder {
    color: #000000;
    font-size: 16px;
}
.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .forgot-wrapper {
    text-align: right;
}

.login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .forgot-wrapper a {
    font-size: 16px;
    color: #813960;
    text-decoration: underline;
}

    .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .btn {
        background: #813960;
        border-radius: 50px;
        color: #DBD8CD;
        text-align: center;
        border: none;
        box-sizing: border-box;
        padding: 12px 15px;
        transition: all 0.3s;
        cursor: pointer;
        border: 1px solid #813960;
        max-width: 400px;
        width: 100%;
        margin: 24px auto 0 auto;
        display: block;
    }


        .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .btn:hover {
            background: #DBD8CD;
            color: #813960;
        }



@media only screen and (max-width: 768px) {
    .login-wrapper .flex-wrapper {
        display: flex;
        flex-direction: column;
    }
    .login-wrapper .flex-wrapper .left-wrapper {
        display: none;
    }
    .login-wrapper .flex-wrapper .right-wrapper .header-wrapper .logo-wrapper {
        padding: 20px 20px;
    }
    .login-wrapper .flex-wrapper .right-wrapper .header-wrapper .logo-wrapper img {
        max-width: 280px;
        margin: auto;
    }
    .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper {
        max-width: calc(100% - 32px);
        min-height: 100vh;
    }
    .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper h1 {
        font-size: 42px;
    }
    .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper h2 {
        font-size: 20px;
    }

        .login-wrapper .flex-wrapper .right-wrapper .login-form-wrapper form .btn {

            margin: 0px auto 0 auto;
        }
}