*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: montserrat;
}

body{
    min-height: 100vh;
    background-color: #666;
    /*background-image: linear-gradient(120deg,#3498db,#061e40);*/
    opacity: 1;
    background-image: url("/dados/login/imagens/bg2.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body,html{
    height: 100%;
}
body.swal2-height-auto{
    height: 100% !important;
}
.logo{
   text-align: center;
}
.login-logo{
    float: left;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.login-form{
    min-width: 345px;
    background-color: rgba(0 0 0 / 83%);
    min-height: 392px;
    padding: 20px 40px;
    border-radius: 10px;
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    
}

#overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    
    filter:blur(4px);
    -o-filter:blur(4px);
    -ms-filter:blur(4px);
    -moz-filter:blur(4px);
    -webkit-filter:blur(4px);
}
.login-form h1{
    text-align: center;
    margin-bottom: 60px;
}
.txtb{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 30px 0;
}
.txtb input{
    font-size: 15px;
    color:#FFFFFF;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
}
.txtb span::before{
    content: attr(data-placeholder);
    position: absolute;
    top:50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    z-index: -1;
    transition: .5s;
}
.txtb span::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
     background: linear-gradient(120deg,#f39b35,#e65193,#ec7763);
    transition: .5s;
    left: 0;
    bottom: -2px;
}
.focus + span::before{
    top: -5px;
}
.focus + span::after{
    width: 100%;
}
.loginbtn{
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    background: linear-gradient(120deg,#f39b35,#e65193,#ec7763);
    background-size: 200%;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .5s;
    margin-top: 55px;
}

.logbtn:hover{
    background-position: right;
}

.bottom-text{
    color: #FFF;
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
}
