﻿.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-account {
    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;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
    background-image: url('../images/background-se-crowd.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.footer {
    background: #f2f2f2;
}

/*Login Page*/
/*-----------------------------------------------------*/
.wrap-account {
    width: 386px;
    height: 479.5px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 65px 55px 33px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-account-container-1 {
    position: absolute;
    z-index: 2;
}

.wrap-account-container-2 {
    background-color: #ffffff;
    z-index: 3;
    margin-top: 0px;
    height: 100%;
    width: 100%;
    position: relative;
}
/*--------------------
[ Form ]*/
.account-form {
    width: 100%;
}

.account-form-title {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.account-form-title img {
    /*width: 80%;*/
    width: 70%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
/*--------------------
[ Input ]*/
.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.account-input {
    font-family: Nunito, sans-serif !important;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
}
/*--------------------*/
.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #555555;
}

.focus-input::after {
    font-family: Nunito, sans-serif !important;
    font-size: 15px;
    color: #999999;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 16px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.account-input:focus + .focus-input::after {
    top: -15px;
}

.account-input:focus + .focus-input::before {
    width: 100%;
}

.has-val.account-input + .focus-input::after {
    top: -15px;
}

.has-val.account-input + .focus-input::before {
    width: 100%;
}

.account-text-right {
    text-align: right;
    padding-bottom: 25px;
    padding-top: 6px;
    margin-top: -30px;
}

.account-text-right > a {
    color: #999999;
}

.account-text-right:hover > a {
    color: #555555;
    cursor: pointer;
}
/*--------------------
[ Login Button ]*/
.container-login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
}

.wrap-login-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.login-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #35b8e0;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-form-btn {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
}

.wrap-login-form-btn:hover .login-form-bgbtn {
    left: 0;
}

/*--------------------
[ Login(2FASetup) Page ]*/
.account-header {
    text-align: center;
    color: #555555;
    margin-top: -5px;
}

.account-text-center {
    text-align: center;
    color: #555555;
    margin: auto;
}

.account-text-left > a {
    color: #999999;
}

.account-text-center > a {
    color: #999999;
}

.account-text-left:hover > a {
    color: #555555;
    cursor: pointer;
}

.account-text-center:hover > a {
    color: #555555;
    cursor: pointer;
}

.account-form-QRImage {
    width: 185px;
    height: 185px;
    margin: auto;
}

.account-form-QRImage img {
    width: 183px;
    height: 183px;
}

/*--------------------
[ Login(2FA) Page ]*/
.account-text-center img {
    width: 100px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.account-text-left {
    color: #555555;
}

/*--------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #adadad;
}

input:-moz-placeholder {
    color: #adadad;
}

input::-moz-placeholder {
    color: #adadad;
}

input:-ms-input-placeholder {
    color: #adadad;
}

textarea::-webkit-input-placeholder {
    color: #adadad;
}

textarea:-moz-placeholder {
    color: #adadad;
}

textarea::-moz-placeholder {
    color: #adadad;
}

textarea:-ms-input-placeholder {
    color: #adadad;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}
/*--------------------*/
/*---------------------End Login Page------------------*/