body{
    margin: 0;
    padding: 0;
    font-family: 'Varela Round', sans-serif;
}

.background-login {
    background: blue;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url(/assets/images/background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.overlay-NO{
    background-image: url(/assets/images/overlay.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 400% 300%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}


#login-page{
    max-width:558px;
    margin: 5% auto 1%;
}

#login-page .logo{
    display: block;
    margin:0 auto 7.7vh;
}

#login-page .logo img{
    width: 422px;
    height: auto;
}


/* Form */
#login-page .account-bg{
    background: none;
    margin:0 20px;
    padding: 0;
}

#login-page .card-box{
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #fff;
    background-color: rgba(255,255,255,0.2);
    padding: 0;
    border-radius: 0;
}

#login-page .card-box h1{
    color:#fff;
    font-weight: 500;
    margin: 77px 17% 59px;
    font-size: 38px;
}

#login-page form{
    margin: 0 17% 87px;
}

#login-page .btn{
    margin: 62px 0 19px;
    height: 49px;
    border-radius:0;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.16);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

#login-page .btn:hover{

    -webkit-box-shadow: 0px 12px 15px rgba(0,0,0,0.2);
    box-shadow: 0px 12px 15px rgba(0,0,0,0.2);

    transform: translate3d(0, -4px, 0);
}

#login-page .btn-success{
    background-color: #fff !important;
    border-color: #fff !important;
    color:#000;
}

#login-page .forgot{
    font-size: 13px;
    color:#fff;
    text-decoration: underline !important;
}
#login-page form #miur, #login-page form #email, #login-page form #password, #login-page form #password-conf{
    background: transparent;
    border-radius: 0;
    border: 0 none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    font-size: 18px;
    color:#fff;
    font-weight: 400;
    padding-left: 0;
    padding-bottom: 2px;
}

#login-page input:required, #login-page  input:invalid {
    box-shadow:none;
    -webkit-box-shadow:none;
}

#login-page .form-group{
    margin:0;
}

#miur, #email, #password {
    margin-bottom: 20px;
}

#miur + label, #email + label, #password + label, #password-conf + label{
    position:absolute;
    top: 6px;
    color:rgba(255,255,255,0.6);
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all .15s cubic-bezier(0,.27,.37,1.59);
    -moz-transition: all .15s cubic-bezier(0,.27,.37,1.59);
    -ms-transition: all .15s cubic-bezier(0,.27,.37,1.59);
    -o-transition: all .15s cubic-bezier(0,.27,.37,1.59);
    transition: all .3s cubic-bezier(0,.27,.37,1.59);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -o-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    cursor: text;
}

#miur:focus + label, #email:focus + label, #password:focus + label, #password-conf:focus + label{
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    top:-15px;
}

#login-page .filled + label{
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    top:-15px;
}

.copyright{
    font-size: 14px;
    color:rgba(255,255,255, 1);
}

.col-12 > img{
    display: block;
    position: absolute;
    top:12px;
    left:-33px;
    width: 20.56px;
    height: auto;
}


/* Logo Responsive */
@media only screen and (max-width: 480px){
    #login-page .logo img{
        width: 300px;
    }
}
