
body{
    width: 100%;
    font-family: Mikhak, serif!important;
    margin: 0;
    background-color: #00143f;
}
h2{
    color: #fff;
    text-align: center;
}
#login_image{
    background: radial-gradient(#004d91,#00143f);
    height: 100vh;
    padding: 100px;
}
#image{
    background: url("../images/login.png") center center no-repeat;
    background-size: contain;
    height: 100%;
}

#login_form{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
}

.divider {
    margin: 20px auto 80px;
    width: 250px;
}

.dividermask {
    overflow:hidden; height:20px;
}

.dividermask:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 200px / 15px;
    box-shadow: 0 0 10px 3px #fff;
}

.form-wrapper {
    max-width: 100%;
    min-width: 300px;
}
.form{
    width: 100%;
}
.form-group {
    position: relative;
}
.form-group + .form-group {
    margin-top: 50px;
}

.form-label {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
    z-index: 10;
    font-size: 1.3em;
    transition: transform 200ms ease-out, font-size 200ms ease-out;
}

.focused .form-label {
    transform: translateY(-125%);
    font-size: 1em;
    color: #fff;
}

.form-input {
    position: relative;
    padding: 12px 0px 5px 0;
    text-align: center;
    width: 100%;
    outline: 0;
    border: 0;
    color: #fff;
    font-size: 1.3em;
    background: transparent;
    box-shadow: 0 1px 0 0 #ccc;
    transition: box-shadow 200ms ease-out;
}
.form-input:focus {
    box-shadow: 0 2px 0 0 #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 2px 0 0 #fff;
    transition: background-color 5000s ease-in-out 0s;
}

.button{
    background: transparent;
    color: #fff;
    height:44px;
    min-width: 100px;
    border: 2px solid #fff;
    border-radius: 10px;
    margin-top: 50px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1.3em;
    transition: background-color 500ms ease-in-out;
}
.button:hover{
    background: rgba(255,255,255,0.5);

}
.hidden_password{

    background: transparent;
    border: 0;
    outline: none;
    font-size: 1.3em;
    color: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}
.copy-right{
    position: absolute;
    bottom: 0;
    color: #fff;
}
@media only screen and (max-width:992px) {
    #login_image {
        display: none;
    }
}