@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700');

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.wrap-login {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}

.login-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 65px 0px 65px;
    z-index: 1;
}
.login-form.reset-form {
    padding: 0px 180px 0 180px;
}

.login-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #555;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 34px;
}

.wrap-input {
    position: relative;
    width: 50%;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
    max-height: 55px;
}
.wrap-input input {
    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    padding: 0 25px;
    outline: 0;
    border: none;
}
.wrap-password {
    border-left: 0;
}

.wrap-reset-input {
    position: relative;
    width: 100%;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
    max-height: 55px;
}
.wrap-reset-input input {
    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    padding: 0 25px;
    outline: 0;
    border: none;
}

.focus-input {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}
.wrap-input input:focus + .focus-input {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background: #00ad5f;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: background 0.4s;
    -o-transition: background 0.4s;
    -moz-transition: background 0.4s;
    transition: background 0.4s;
    margin: 0;
    outline: none !important;
    border: none;
    overflow: visible;
    -webkit-appearance: button;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
.login-form-btn:hover {
    cursor: pointer;
    background: #333;
}

.login-more {
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.login-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}

.login-forgot {
    text-align: center;
    padding-top: 27px;
    width: 100%;
    font-size: 13px;
    line-height: 1.4;
    color: #999;
}
.login-forgot a {
    color: #00ad5f;
    transition: all 0.4s;
    outline: 0 !important;
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    -moz-transition: color 0.4s;
}
.login-forgot a:hover {
    color: #333;
    text-decoration: none;
}
.wrap-forgot {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    -webkit-transition: top 0.6s;
    -o-transition: top 0.6s;
    -moz-transition: top 0.6s;
    transition: top 0.6s;
}
.container-login.active .wrap-forgot {
    top: 0;
}

.forgot-form {
    display: block;
    width: 100%;
    padding: 40vh 65px 0px 65px;
}
.wrap-input-forgot {
    width: 100%;
}

.forgot-more {
    position: absolute;
    top: 100vh;
    right: 0;
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    -webkit-transition: top 0.6s;
    -o-transition: top 0.6s;
    -moz-transition: top 0.6s;
    transition: top 0.6s;
}
.forgot-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}
.container-login.active .forgot-more {
    top: 0;
}

.login-alert.alert-danger {
    margin: 0px auto 40px auto;
    display: none;
    border-radius: 0;
    background-color: #d76860;
    border-color: #d76860;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}
.login-alert.alert-success .glyphicon {
    color: #26b96a;
    font-size: 28px;
    top: 3px;
    margin-right: 20px;
}
.login-alert.alert-success {
    margin: 0px auto 40px auto;
    display: none;
    border-radius: 0;
    background-color: #60D797;
    border-color: #60D797;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}
.login-alert.alert-danger .glyphicon {
    color: #7f403b;
    font-size: 28px;
    top: 3px;
    margin-right: 20px;
}

.login-alert .alert-text {
    position: relative;
    top: -5px;
}
.clear {
    clear: both;
    width: 100%;
}

@media (max-width: 1500px) {
    .login-form.reset-form {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .login-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .login-more {
        width: 40%;
    }
    .wrap-forgot {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .forgot-more {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .login-form {
        width: 100%;
    }
    .login-more {
        display: none;
    }
    .wrap-forgot {
        width: 100%;
    }
    .forgot-more {
        display: none;
    }
}

@media (max-width: 576px) {


    .wrap-input {
        width: 100%;
    }
    .wrap-password {
        border-left: 1px solid #e6e6e6;
    }
    .login-alert .glyphicon {
        display: none;
    }
    .login-alert .alert-text {
        top: 0;
    }
}