﻿/* ********** login ********** */

@font-face {
    font-family: 'Arimo';
    src: url('/font/Arimo-Regular.ttf');
}

@font-face {
    font-family: 'Arimo Bold';
    src: url('/font/Arimo-Bold.ttf');
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-split {
    display: flex;
    width: 100%;
    background: #fff;
    min-height: 100vh;
}

.login-left {
    flex: 1;
    background: url('../images/login/login-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-left-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.login-subtitle {
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.login-image {
    text-align: center;
    padding: 20px;
    margin-bottom: 50px;
}

.login-logo {
    max-width: 80%;
    height: auto;
}

.login-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-checkbox-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 20px 45px;
    border-bottom: 1px solid #505050;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    font-size: 16px;
    font-family: 'Arimo';
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-bottom: 1px solid #3aafa9;
    outline: none;
    box-shadow: none;
}

.input-group span {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    color: #666;
    z-index: 10;
}

.input-group .password-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    z-index: 11;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #222222;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #767676;
}

.checkbox-wrapper label{
    margin: 0;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox label {
    font-family: 'Arimo';
    color: #666;
    font-size: 14px;
}

.forgot-password a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    vertical-align: top;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 12px;
}

.alert-danger {
    color: #fa2c2c;
    background: none;
    border: 0;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-split {
        flex-direction: column;
        width: 100%;
        height: auto;
        border-radius: 0;
    }

}


/* login-header */
#logo-login {
    padding: 0 0 20px 0;
    text-align: center;
    margin: auto;
}

    #logo-login img {
        margin: 40px 0 10px 0;
        max-width: 240px;
    }

    #logo-login h1 {
        font-size: 14px;
        padding: 0 5px;
        position: relative;
        line-height: 20px;
        font-weight: normal;
    }
/* //.login-header */

/* login-body */
.login-box {
    width: 270px;
    margin: auto;
    padding-bottom: 30px;
}
.login-box .input-group {
    position:relative;
}
.login-box .input-group input{
    padding-left:45px;
}

.input-group-btn {
    margin-bottom: 10px;
    padding: 0;
    margin-top: 25px;
}



.input-group > .form-control::-webkit-input-placeholder {
    color: #999999;
}

.input-group > .form-control::-moz-placeholder {
    color: #999999;
}

.input-group > .form-control:-ms-input-placeholder {
    color: #999999;
}

.input-group > .form-control:-moz-placeholder {
    color: #999999;
}

.input-group > .form-control:disabled, .form-control[readonly] {
    font-family: 'Arimo Bold';
    color: #555555;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
}

.label-forgot {
    font-size: 13px;
    color: #8f8f8f;
    float: right;
}

    .label-forgot:hover {
        text-decoration: none;
    }

.alert-danger {
    font-size: 12px;
}

.alert ul {
    margin-bottom: 0;
    margin-left: -26px;
}




/* checkbox */
.checkbox {
    position: relative;
    text-align: left;
}

    /* checkbox */
    .checkbox.checkbox-inline {
        display: inline-block;
    }

    .checkbox label {
        cursor: pointer;
        display: inline;
        line-height: 1.25em;
        vertical-align: top;
        clear: both;
        padding-left: 0;
    }

        .checkbox label:not(:empty) {
            padding-left: 19px;
        }

        .checkbox label:before,
        .checkbox label:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
        }

        .checkbox label:before {
            width: 1.25em;
            height: 1.25em;
            background: #fff;
            border: 1px solid #999999;
            border-radius: 0.125em;
            cursor: pointer;
            transition: background 0.3s;
        }

    .checkbox input[type="checkbox"] {
        outline: 0;
        visibility: hidden;
        width: 0.5em;
        margin: 0;
        display: block;
        float: left;
        font-size: inherit;
    }

    .checkbox input[type="checkbox"]:checked + label:before {
        background: #3eacaa;
        border: none;
    }

    .checkbox input[type="checkbox"]:checked + label:after {
        transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
        width: 0.75em;
        height: 0.375em;
        border: 0.125em solid #fff;
        border-top-style: none;
        border-right-style: none;
    }

        .checkbox input[type="checkbox"]:disabled + label:before {
            border-color: rgba(0, 0, 0, 0.26);
        }

        .checkbox input[type="checkbox"]:disabled:checked + label:before {
            background: rgba(0, 0, 0, 0.26);
        }




.alert-danger {
    color: #fa2c2c;
    background: none;
    border: 0;
}

.alert {
    padding: 0;
    margin: 0;
}
/* //.login-body */
