.fundo{
    animation-name: pulse;
    animation-duration: 70s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        background-image: url("img-fundo-3.png"), linear-gradient(#c6edf7,#59D8FB);
        background-position: 0vh ;
    }
    100% {
        background-image: url("img-fundo-3.png"), linear-gradient(#c6edf7,#59D8FB);
        background-position: 100vh ;
    }

    
  }

html,
body {
  height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box{
    width: 450px;

    min-height: 500px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow:none;
}

.label-login{
    font-family: 'Dosis', sans-serif;
    color: #02c3fa;
    font-weight: Bold;
    font-size : 40px;
}
.label-titulo{
    font-family: 'Dosis', sans-serif;
    color: #02c3fa;
    font-weight: Bold;
    font-size : 20px;
}

.input{
    font-family: 'Dosis', sans-serif;
    width: 250px;
    border-radius: 5px;
    border-style:none;
    color: gray;
    background-color: rgba(255, 255, 255, 0);

}
.input-field{
    position: relative;

}
.input:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
    border-color:#02c3fa ;
}
.input-senha{
    width: 250px;
    border-radius: 5px;
    border-style: none;
    color: gray;
    background-color: rgba(255, 255, 255, 0);

}
.input-senha:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
}

.underline::before{
    content: '';
    position: absolute;
    height: 2.5px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: rgba(0, 0, 0, 0.05);
}

.underline::after{

    content: '';
    position: absolute;
    height: 2.5px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: linear-gradient(#c6edf7,#59D8FB);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    transform-origin: left;
    
}

.input-field input:focus ~ .underline::after{
    transform: scaleX(1);
}

.botaoEntrar{
    background-color: #02c3fa;
    font-family: 'Dosis', sans-serif;
    font-size : 20px;
    border: none;
    color: white;
    width: 150px;
    height: 50px;
    border-radius: 10px;
}

.botaoEntrar:active{
    position:relative;
    top:2px;
    box-shadow:none;
}

.botaoEntrar:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
}

.hr{
    width: 80%;
}

.label-cadastro{
    font-family: 'Dosis', sans-serif;
    color: gray;
    font-size : 15px;
}

.label-cadastro2{
    font-family: 'Dosis', sans-serif;
    color:#02c3fa;
    font-size : 15px;
}

.botao-login-parceiros{
    background-color: white;
    border: none;
    width: 180px;
    height: 50px;
    border-radius: 10px;
    vertical-align: middle;
    text-align: center;
}

.botao-login-parceiros:active{
    position:relative;
    top:2px;
    box-shadow:none;
}

.image{
    height: 20px;
    width: 20px;
}

.align-vertical{
    align-items: center;
    vertical-align:middle
  }