body {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: auto;
    margin: 0;
    padding: 0;
}

#app {
    overflow-y: auto;
}

.login-form {
    width: 360px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(0, 0, 0, .8);
    box-shadow: 1px 0px 15px rgba(1, 92, 145, 0.41);
    border: 1px rgba(1, 92, 145, 0.41) solid;
    border-radius: 15px; */
    overflow: auto;
}

.register-form {
    margin: 20px 0;
}

.login-form form {
    background: transparent;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px 30px 20px 30px;
}

.login-form h2 {
    margin: 0 0 15px;
}

.login-form .hint-text {
    color: #777;
    padding-bottom: 15px;
    text-align: center;
}

.form-control,
.btn {
    border-radius: 0 !important;
    box-shadow: 0 !important;
}

.or-seperator {
    margin: 20px 0 0px;
    text-align: center;
    border-top: 1px solid #ccc;
    margin-bottom: -5px;
}

.or-seperator i {
    padding: 0 10px;
    background-color: #fff;
    position: relative;
    top: -8px;
    z-index: 1;
    text-transform: uppercase;
    border-radius: 0px;
    font-style: normal !important;
    font-size: 11px;
}

.social-btn .btn {
    margin: 10px 0;
    font-size: 14px;
    text-align: left;
    line-height: 24px;
    border: 1px rgba(255, 255, 255, .3) solid;
    color: rgba(255, 255, 255, .6)
}


/*.social-btn .btn:hover {
		color: rgba(0,0,0,.6)
	}*/

.social-btn #btn-l-fb:hover {
    background-color: #0668ae;
    color: #fff;
}

.social-btn #btn-l-gg:hover {
    background-color: #bd2828;
    color: #fff;
}

.social-btn .btn i {
    float: left;
    margin: 4px 15px 0 5px;
    min-width: 15px;
}

.login-btn {
    border: 1px rgba(255, 255, 255, .3) solid;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.footer-form {
    border-top: 1px rgba(255, 255, 255, .1) solid;
    margin-top: 5px;
    padding-top: 10px;
}

.footer-form a {
    color: rgba(255, 255, 255, .8) !important;
}

* {
    box-sizing: border-box;
}

.group {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.group label {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font: 400 12px 'Poppins', Roboto;
    cursor: text;
    transition: .25s ease;
    top: 0;
}

.group input {
    display: block;
    width: 100%;
    padding-top: 25px;
    border: none;
    border-radius: 0;
    color: white;
    background: transparent;
    font-size: 14px 'Poppins', Roboto;
    transition: .3s ease;
    box-shadow: none !important;
}

.group input:-webkit-autofill,
.group input:-webkit-autofill:hover,
.group input:-webkit-autofill:focus {
    border: none;
    -webkit-text-fill-color: green;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.group input:valid~label {
    top: 0;
    font: 400 13px 'Poppins', Roboto;
    color: rgba(255, 255, 255, 0.6);
}

.group input:focus {
    outline: none;
    border-bottom: 0 !important;
}

.group input:focus~label {
    top: 0;
    font: 400 13px 'Poppins', Roboto;
    color: #2196f3;
}

.group input:focus~.bar:before {
    transform: translateX(0);
}

.group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #333 inset;
    -webkit-text-fill-color: white !important;
}

.group .bar {
    background: rgba(255, 255, 255, 0.6);
    content: '';
    width: 100%;
    height: 1px;
    transition: .3s ease;
    position: relative;
}

.group .bar:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 150%;
    background: #2196f3;
    transform: translateX(-100%);
}

::selection {
    background: rgba(33, 150, 243, 0.3);
}

.login-form .form-check {
    line-height: 36px;
}

.login-form .form-check input[type=checkbox],
input[type=radio] {
    margin-top: 11px;
}

.login-form .form-check-label {
    font-weight: normal;
    font-size: 14px;
    color: #aaa;
}

.login-logo {
    text-align: center;
    padding-bottom: 10px;
}

.login-logo img {
    height: 40px;
    margin-bottom: 20px;
    /* width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px rgba(255, 255, 255, .5) solid; */
}

#btn-signin,
#btn-l-fb,
#btn-l-gg {
    height: 38px;
}

.has-error label {
    color: #bd2828 !important;
}

.has-error .bar {
    background-color: #bd2828 !important;
}