body{
    background-image: url(../img/Recurso-1.jpg);
    background-size: cover;
    font-family: "Poppins", sans-serif;
}
.logo{
    width: 40%;
    margin-top: 14vh;
    margin-bottom: 40px;
}
input{
    width: 500px;
    border-radius: 10px;
    height: 45px;
    background-color: #E1FFFB;
    border: none;
    outline: none;
    padding: 15px 15px 15px 15px;
}
input::placeholder {
    text-align: center;
    color: #CCCCCC;
}
input:active {
    border-color: none;
}
.btn-ingresar{
    background-color: #573CF9;
    height: 44px;
    width: 210px;
    margin-top: 20%;
    color:  #99FFF4;
    transition: transform 0.3s ease;
}
.btn-ingresar:hover{
    color: white;
    transform: scale(1.02); 
}
.btn-unete{
    background-color: #E1FFFB;
    height: 44px;
    width: 210px;
    color:  #573CF9;
    transition: transform 0.3s ease, box-shadow 0.2s ease;
}
.btn-unete:hover{    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.02); 
}
button{
    font-size: 18pt;
    border-color: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.link-recupera{
    font-size: 13pt;
    color: #573CF9;
    transition: transform 0.3s ease;
}
.link-recupera:hover{
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
button a{
    text-decoration: none;
}

/*Medida Celular*/
@media (max-width: 767.98px) { 
    .logo{
        width: 85%;
        margin-top: 25vh;
        margin-bottom: 40px;
    }
    input{
        width: 85%;
        border-radius: 10px;
        height: 45px;
    }
}