*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body
{
    background-color: #dfe9f5;
    display: flex;
}

.wrapper
{
    
    width: 330px;
    padding: 2rem 1rem;
    margin: 185px auto;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

h1
{
    font-size: 2rem;
    color: #07001f;
    margin-bottom: 1.2rem;
    transition: 1s;
}

h5
{
    font-size: 0.8rem;
    color: #07001f;
    margin-bottom: 1.2rem;

}

form input
{
    width: 92%;
    outline: none;
    border: 1px solid #fff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: #e4e4e4;
}

button
{

    font-size: 1rem;
    margin-top: 1.8rem;
    padding: 10px 0;
    border-radius: 20px;
    outline: none;
    border: none;
    width: 90%;
    background: rgb(17, 107, 143);
    transition: 0.5s;
}

button a
{
    color: #fff;
    text-decoration: none;
}

button:hover
{
    background-color: rgba(17, 107, 143,0.877);

}

input:hover
{
    border: 1px solid rgb(192,192,192);

}

input:focus
{
    border: 2px solid rgba(0, 0, 0, 0.688);
}


.remem
{
    margin-top: 0.2rem;
}

.remem input
{
    height: 1em;
    width: 1em;
    vertical-align: middle;
    cursor : pointer;
}

.remem label
{
    font-size: 0.7rem;
}

.recover
{
    text-align: right;
    font-size: 0.7rem;
    margin: 0.3rem 1,4rem 0 0;
}

.recover a 
{
    text-decoration: none;
    color: #464647;
}

.logo
{
    padding: 5px;
    margin: 20px auto;
    color: #fff;
    width: fit-content;
    background-color: rgb(17, 107, 143);
    border-radius: 20px;
    transition: 1s;
}

button:hover
{
    transform: translateY(-3px);
}

.inputs
{
    transition: 1s;
}

.inputs:focus 
{
    
    transform: translateY(-6px);

}

 .wrapper:focus-within .logo 
 {
    transform: translateY(-20px);
    box-shadow: 0px 0px 10px  rgb(17, 107, 143) ;
 }


 .wrapper:focus-within h1
 {
    transform: scale(1.1);
 }

.logo:hover
{
    transform: translateY(-20px);
    box-shadow: 0px 0px 10px  rgb(17, 107, 143) ;


}