/*
 * Page: Login & Register
 * ----------------------
 */
/*--------------------------------------------------------------
 Typography
--------------------------------------------------------------*/
html {
    height:100%;
}
body {    
    min-height: 100vh;
}
.d-table {
    width: 100%;
    height: 100%
}

.d-table-cell {
    vertical-align: middle
}

.signin-area {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-white);
}

.signin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 100px;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .signin-header {
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .signin-header {
        padding: 30px;
        text-align: center;
    }
}

.signin-header .site-logo {
    display: inline-block;
}

@media only screen and (max-width: 575px) {
    .signin-header .site-logo {
        margin-bottom: 40px;
    }
}

.signin-header .singin-header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (max-width: 575px) {
    .signin-header .singin-header-btn {
        justify-content: center;
        flex-direction: column;
    }
}

.signin-header .singin-header-btn p {
    margin-bottom: 0;
    color: #292930;
    font-size: var(--font-size-b2);
    font-weight: var(--p-medium);
}

.signin-header .singin-header-btn .sign-up-btn {
    margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .signin-header .singin-header-btn .sign-up-btn {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .signin-header .singin-header-btn .sign-up-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

.signin-header .back-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #CBD3D9;
    border-radius: 4px;
    font-size: 16px;
    display: block;
    text-align: center;
    transition: var(--transition);
}

    .signin-header .back-btn:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-white);
    }

        .signin-header .back-btn:hover i {
            animation: prevNavSlide 400ms;
        }

.signin-banner {
    min-height: 900px;
    height: 100vh;
    padding: 200px 50px 0 100px;
    background-image: url(../images/bg/bg-image-9.jpg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-banner {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .signin-banner {
        display: none;
    }
}

.signin-form-wrap {
    width: 100%;
    height: calc(100vh - 180px);
    overflow-y: auto;
    display: flex;
    margin:80px -30px -30px;
}

@media only screen and (max-width: 991px) {
    .signin-form-wrap {
        justify-content: center;
        text-align: center;
        margin: 150px 0 0;
    }
}

@media only screen and (max-width: 575px) {
    .signin-form-wrap {
        margin: 100px 0 0;
        height: calc(100vh - 100px);
    }
}

.signin-form {
    max-width: 450px;
    width: 100%;
    padding: 30px;
}

    .signin-form .singin-form {
        padding-bottom: 30px;
    }

    .signin-form .title {
        margin-bottom: 16px;
    }

    .signin-form p {
        color: var(--color-gray);
    }

    .signin-form .form-group {
        margin-bottom:20px;
    }

        .signin-form .form-group:last-child {
            margin-bottom:0;
        }

        .signin-form .form-group .input-wrapper {
            position:relative;
        }

    .signin-form .form-control {
        /*height: 60px;
        border-color: var(--color-light);*/
        padding: 0 30px;
        /*color: var(--color-body);*/
    }

    .signin-form .submit-btn {
        width: auto;
    }

    .signin-form .forgot-btn {
        font-size: 14px;
        color: var(--color-primary);
        transition: var(--transition);
    }

        .signin-form .forgot-btn:hover {
            color: var(--color-body);
        }