body{
    background-color: #ffffff;
}
#main-content{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 9.15%;
    font-size: 15px;
}
#main-content:before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 58%;
    background-color: #f9fafb;
    transform-origin: 0 0;
    transform: skew(0, -7deg);
}

/*''' language select box ***/
.language-select{
    margin-bottom: 35px;
}

/*** login form box ***/
#box-wrapper{
    width: 100%;
    min-width: 320px;
}
#box-wrapper .gsi-logo{
    margin: 0 auto 60px;
    max-width: 160px;
    width: 100%;
    height: auto;
}
#box-wrapper .form-box{
    position: relative;
    margin: auto;
    width: 93.43936381709742%;
    max-width: 470px;
    padding: 35px;
    border: 1px solid rgba(11,46,102, 0.1);
    border-radius: 5px;
    text-align: center;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 3px 20px 0 rgba(0,0,0,0.5);
    box-shadow: 0 3px 20px 0 rgba(0,0,0,0.05);
    background-color: #ffffff;
}
#box-wrapper h2{
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 25px;
    color: var(--gsi-text-color);
}
#box-wrapper .button{
    min-width: 145px;
}

#box-wrapper .text{
    text-align: left;
    font-size: 16px;
    color: var(--gsi-indigo-50);
    margin-bottom: 35px;
}

#password-reset-email-form label{
    margin-bottom: 30px;
}


/*** footer ***/
#box-wrapper .form-background{
    position: absolute;
    z-index: -1;
    left: calc(28px / 2 * -1);
    bottom: -13px;
    width: calc(100% + 28px);
    max-width: 503px;
    height: 100%;
    background-image: url('../../_redesign/images/login-form-point-background.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

#box-wrapper .form-box-footer{
    position: relative;
    margin: auto;
    width: 93.43936381709742%;
    max-width: 470px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 42px;
}
#box-wrapper .form-box-footer > div{
    display: flex;
    align-items: center;
}

#box-wrapper .vertical-divider {
    display: inline-block;
    width: 1px;
    height: 16px;
    margin: 0 12px;
    background-color: var(--gsi-indigo-50);
}





/*** switch form classes **********************************************************************************************/
#box-wrapper form,
#box-wrapper h2{
    display: none;
}
#box-wrapper form.active,
#box-wrapper h2.active{
    display: block;
}
