
body{
    font-family: 'poppins', sans-serif;
    overflow-x: clip;
}

@media screen and (max-width:770px) {

form{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px;
    border-radius: 26px;
    max-width: 100%;
    width: 60%;
    margin: 0 auto;

}

label{
    font-size: 1.8rem;
    font-weight: 800;
    color: rgb(131, 131, 129);
    
}

input{
    padding: 12px;
    max-width: 100%;
    width: 100%;
    color: orange;
    outline: 0;
    font-size: 1.4rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #a39f9f;
}

::placeholder{
    color: orange;
    font-size: 1.1rem;
    text-align: center;

}

button{
    padding: 12px 52px;
   background-color: gray;
   color: #fff;
    font-size: 1.2rem;
    border: 0;
    transition: 1s ease-in-out;
   
}

button:hover{
    cursor: pointer;
    background-color: rgb(72, 71, 71);
    transition: 1s ease-in-out;
    
} 

form p{
    font-size: 0.8rem;
}

/* eye icon */

.passwordInputWrapper{
    position: relative;
}

.passwordInputWrapper .fa-eye, .passwordInputWrapper .fa-eye-slash{
    position: absolute;
    top:55%;
    left: 90%;
    color: #463737;
    cursor: pointer;
}
    
}