*{
    margin: 0;
    padding: 0;
}
body{
background: url(../css/TErra.jpg);
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
}
.dados{
    transform: translate(0px);
    animation: zoom 5s ease-in-out infinite;
}

@keyframes zoom{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-30px);
    }
    100%{
        transform: translateY(0px);
    }
}

.dados{
    transition: 5s;
    box-shadow: 0em 0em 1em rgb(0, 38, 255);
    height: 450px;
    width: 350px;
    border-radius: 30px 10px;
    background: rgba(0, 0, 0, 0.418);
    backdrop-filter: blur(1px);
}
.dados:hover{
    transition: 2s;
    box-shadow: 0em 0em 10em rgb(4, 0, 255);
    
}

.input1{
position: relative;
margin-bottom: 20px;
text-align: center;
}

.email, .senha{
    margin-top: 25px;
    color: white;
    font-size: 25px;
}
#insert{
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.email input, .senha input{

   width: 300px;
   height: 35px;
   margin-left: 25px;
   background: transparent;
   border: none;
   outline: none;
   border-bottom: 1px solid white;
   color:white;
}

input:focus{
    border-bottom: 1px solid rgb(0, 110, 255);
    box-shadow: 0 1px 0 0 rgb(0, 110, 255);
}

input:focus + label{
    transform: translateY(-14);
}
.entrar{
    
    cursor: pointer;
   margin-left: 40px;
    color: rgb(255, 255, 255);
}

.entrar input{
    border-radius: 5px;
    width: 270px;
    height: 40px;
    border: none;
    background: rgba(0, 110, 255, 0.767);
}

.entrar input:hover{
    height: 50px;
    width: 280px;
    transition: .20s;
}
.senhaLogar{
    padding: 40px 15px;
    width: 150px;
    
}
.senhaLogar a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    opacity:80% ;
}
.recSenha:hover{
    border-bottom: 3px solid rgba(0, 110, 255, 0.767);
    transition: 0.50s;
}
.conectar{
    text-align: center;
    margin-top: -15px;
    margin-bottom: 35px;
}
.conectar a{
    color: white;
    font-size: 17px;
    opacity:80% ;
}
.outrascontas{
    display: flex;
    height: 50px;
}
.gmail{
    text-align: center;
    width: 150px;
    margin-left: 25px;
}
.gmail img{
    width: 30%;
}
.facebook{
    text-align: center;
    width: 150px;
    margin-right: 25px;
}
.facebook img{
    width: 30%;
}