*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

.login {
    height: 80vh;
    width: 460px;
    margin: 0 calc((100% - 460px) / 2);
    padding-top: 45vh;
    -webkit-animation: login-panel-hide 1.5s both 0.5s paused;
            animation: login-panel-hide 1.5s both 0.5s paused;
}

@keyframes login-panel-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.login .main {
    position: relative;
    width: 460px;
    height: 320px;
    padding: 25px;
    background-color: rgba(255,255,255,0.7);
    box-shadow:  10px 10px 10px #6A7481;
    border-radius: 12px;
    overflow: hidden;
}

.login .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 55%;
    height: 100%;
    padding: 10px;
    background-color: rgba(255,255,255,0.7);
    transition: 1.25s;
}

.login .a-container {
    z-index: 100;
    left: 45%;
}

.login .b-container {
    left: 45%;
    z-index: 0;
}

.login .switch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    padding: 10px;
    z-index: 2;
    transition: 1.25s;
    background-color: rgba(255,255,255,0.7);
    overflow: hidden;
    box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #f9f9f9;
}

.login .oe_login_form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.login .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #9b9b9b;
}

.login .form__input {
    width: 200px;
    height: 35px;
    margin: 5px 0;
    padding: 5px 15px;
    font-size: 12px;
    letter-spacing: .15px;
    border: none;
    outline: none;
    color: #777;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255,255,255,0.7);
    transition: .25s ease;
    border-radius: 2.5px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}

.login .form__input:focus {
    box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
}

.login .button {
    width: 110px;
    padding: 5px 0;
    border-radius: 25px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.15px;
    background-color: #337ab7;
    color: #f9f9f9;
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
    border: none;
    outline: none;
    cursor: pointer;
}

.login .b-container .form .title {
    line-height: 3;
}

.login .b-container .form .form__input {
    margin: 20px 20px;
}

.login .b-container .form .button {
    margin-top: 30px;
}

.form__icon {
    object-fit: contain;
    width: 30px;
    margin: 0 5px;
    opacity: .5;
    transition: .15s;
}

.form__icon:hover {
    opacity: 1;
    transition: .15s;
    cursor: pointer;
}

.form__span {
    margin-top: 30px;
    margin-bottom: 12px;
}

.form__link {
    color: #181818;
    font-size: 15px;
    margin-top: 25px;
    border-bottom: 1px solid #a0a5a8;
    line-height: 2;
}

.description {
    font-size: 14px;
    letter-spacing: .25px;
    text-align: center;
    line-height: 1.6;
}

.switch__circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.7);
    box-shadow: inset 8px 8px 12px #d1d9e6, inset -8px -8px 12px #f9f9f9;
    bottom: -30%;
    left: -35%;
    transition: 1.25s;
}

.switch__circle__t {
    top: -30%;
    left: 45%;
    width: 150px;
    height: 150px;
}

.switch__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: 100%;
    padding: 10px;
    transition: 1.25s;
}

.login .switch__button {
    margin: 10px;
    cursor: pointer;
}

.switch__button:hover {
    box-shadow: 6px 6px 10px #d1d9e6, -6px -6px 10px #f9f9f9;
    transform: scale(0.985);
    transition: .25s;
}

.switch__button:active, .switch__button:focus {
    box-shadow: 2px 2px 6px #d1d9e6, -2px -2px 6px #f9f9f9;
    transform: scale(0.97);
    transition: .25s;
}

/**/
.login .is-txr {
    left: 45%;
    transition: 1.25s;
    transform-origin: left;
}

.login .is-txl {
    left: -35%;
    transition: 1.25s;
    transform-origin: right;
}

.login .is-txl#b-container,.login .is-txl#a-container{
    left: 0;
}

.login .is-txr#switch-cnt{
    left: 55%;
}

.login .is-z200 {
    z-index: 200;
    transition: 1.25s;
}

.login .is-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 1.25s;
}

.login .is-gx {
    animation: is-gx 1.25s;
}

@keyframes is-gx {
    0%, 10%, 100% {
        width: 45%;
    }
    30%, 50% {
        width: 55%;
    }
}

.option_area {
    white-space: nowrap;
}

.option_area .form-group {
    display: inline-block;
    margin-bottom: 0;
}

.std-login-message {
    font-size: 12px;
    margin: 0;
    background: #f9f9f9;
    border-color: #f9f9f9;
    color: #9b9b9b;
    padding: 0.25rem;
}

