@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' sans-serif;
}
body{
   background: #b1b671;
   overflow: hidden;
}
.container{
    max-width: 440px;
    padding: 0 20px;
    margin: 170px auto;
}
.wrapper{
    width: 380px;
    background:#fff;
    border-radius: 5px;
}
.wrapper .title{
    line-height: 80px;
    background: #16a085;
    text-align:center;
    padding-left: 20px;
    border-radius: 5px 5px 0 0;
    color:#fff;
    font-size: 25px;
    font-weight: 600;
}
.wrapper form{
    padding: 30px 20px 25px 20px;
}
.wrapper form .row{
    height: 45px;
    border: #ff0000;
    margin-bottom: 15px;
    position: relative;
}
.wrapper form .row input{
    height: 100%;
    width: 100%;
    padding-left: 60px;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
}
form .row input:focus{
    border-color: #16a085;
    box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
.wrapper form .row i{
    position: absolute;
    width: 47px;
    height: 100%;
    color: #fff;
    font-size: 18px;
    background: #16a085;
    border: 1px solid #848584;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper form .button input{
    color: #fff;
    font-size: 20px;
    padding-left: 0px;
    font-weight: 500;
    background: #16a085;
    border: 1px solid #16a085;
    cursor: pointer;
}
form .button input:hover{
    background: #128761;
}
.wrapper form .pass{
    margin: -8px 0 20px 0;
    text-align: right;
}
.wrapper form .pass a{
    color: #16a085;
    font-size: 17px;
    text-decoration: none;
}
.wrapper form .pass a:hover{
    text-decoration: underline;
}
.wrapper form .signup-link{
    text-align: center;
    margin-top: 20px;
}
.wrapper form .signup-link a{
    color: #16a085;
    font-size: 17px;
    text-decoration: none;
}
form .signup-link a:hover{
    text-decoration: underline;

}