@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
body{
    background-color: #1abc9c;
    overflow:hidden
}
.container{
    max-width:440px;
    padding:0 20px;
    margin:170px auto;

}
.wrapper{
    width: 380px;
    background: #f4f4f4;
    border-radius:5px;
}
.wrapper .title{
    line-height:90px;
    background: #16a085;
    text-align: center;
    border-radius:5px 5px 0px 0px;
    color: #fff;
    font-size:23px;
    font-weight: 600;
}
.wrapper form{
    padding:35px 20px 30px 30px;
}
.wrapper form .row{
    height:45px;
    background:#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: 18px;
    transition: all 0.3s ease;
}
.wrapper form .row i{
    position: absolute;
    width:47px;
    height: 100%;
    color:#fff;
    font-size:18px;
    background:#16a085;
    border: 1px solid #16a085;
    display:flex;
    align-items: center;
    justify-content:center;
    border-radius:5px 0 0 5px;

}
.wrapper form .button input{
    color: #fff;
    font-weight: 18px;
    padding-left: 0px;
    background: #16a085;
    border:1px solid #16a085;
    cursor: pointer;
}
.wrapper form .pass{
    margin: -8px 0 20px 0;
}
.wrapper form .pass a{
    color:#16a085;
    text-decoration: none;
    font-size: 17px;;
}
.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;
    text-decoration: none;
    font-size: 17px;;
}
form .signup-link a:hover{
    text-decoration: underline;
}
form .button input:hover{
    background:#12876f;
}
form .row input:focus{
    border-color:#16a085;
    box-shadow:insert 0px 0px 2px 2px rgba(26,188,156,0.25)  ;
}
