/* #6483A7;*/
/* #6483A7;*/
/* #6483A7;*/
/*$toolbar-iconFontSize: 22px;*/
/* #6483A7;*/
/*translate(0,0px);*/
/*0 1px 0 0 rgba(76, 76, 76, 100);*/
/*$box-shadow;*/
.form {
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    position: relative;
}

    .form.active {
        width: 100%;
        height: auto;
        transition: opacity 0.4s;
        opacity: 1;
    }

        .form.active.signup {
            overflow: visible;
        }

.form-signup-wrapper,
.form-email-wrapper,
.form-password-wrapper {
    grid-area: 1/1/2/2;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

    .form-email-wrapper.fade-out {
        transform: translate(-80%);
        opacity: 0;
        pointer-events: none;
    }

    .form-password-wrapper.fade-out {
        transform: translate(80%);
        opacity: 0;
        pointer-events: none;
    }

.form-userid-label {
    color: #808080;
}

.link-goto-login {
    color: #FFFFFF;
    top: -38px;
    left: 0;
}

.form-signup-link {
    width: 95%;
    max-width: 600px;
    color: #FFFFFF;
    font-size: 14px;
}

    .form-signup-link .link {
        font-size: 14px;
        color: #FFFFFF;
    }

.form-dialog {
    background-color: #fff;
    overflow: hidden;
}

.forget-password-link {
    margin-top: 20px;
    width: 155px;
    margin-left: auto;
}

    .forget-password-link .link {
        box-shadow: 0 1px 0 0 #000000;
    }

.login-userId {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 90px);
    max-width: 270px;
    margin-top: 4px;
    font-size: 14px;
    color: #B3B3B3;
}

/* modal */
#modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    display: flex;
    opacity: 0;
    transition: 0.3s opacity;
}

    #modal.show {
        opacity: 1;
    }

.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
    position: relative;
    z-index: 2;
    margin: auto;
    pointer-events: auto;
}

.modal-body {
    margin-top: -15px;
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 52;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 768px) {
    .login-userId {
        max-width: 245px;
        font-size: 12px;
        margin-top: 2px;
    }

    .form-signup-wrapper,
    .form-email-wrapper,
    .form-password-wrapper,
    .form-dialog {
        padding: 40px 20px;
    }

    .form-column,
    .forget-password-link {
        width: 100%;
    }

    .forget-password-link {
        margin-top: 10px;
    }

    .form-signup-link {
        width: 100%;
        max-width: 350px;
        font-size: 13px;
    }

        .form-signup-link .link {
            font-size: 13px;
        }

    .modal-dialog {
        width: 90%;
        max-width: 500px;
    }
}
