@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #1abc9c;
    overflow: hidden;
}

.whole{
    max-width: 440px;
    padding: 0 20px ;
    margin: 170px auto;
}

.container{
    width:100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.2);

}
.container .title{
    line-height: 80px;
    background: #16a085;
    color: #fff;
    padding-left: 50px;
    border-radius: 5px 5px 0 0;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding: 0;
}

.container form{
    padding: 30px 20px 25px 20px;
}

.container form .row{
    height: 45px;
    margin-bottom: 15px;
    position: relative;
}

.container form .row input{
    height: 100%;
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
    outline: none;
    padding-left: 60px;
    padding-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

form .row input:focus{
    border-color: #16a085;
    box-shadow: inset 0 0 2px 2px rgb(26, 188, 156, 0.25);
}

.container form .row  i{
    position: absolute;
    color: white;
    background: #16a085;
    height: 100%;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 5px 0  0 5px;

}


.container form .forpass a{
    color: #16a085;
    text-decoration: none;
    position: relative;
}
.container form .forpass a:hover{
    text-decoration: underline;
}

.container form .rowbtn input{
    color: white;
    background-color: #16a085;
    width: 100%;
    height: 40px;
    border: 1px solid #16a085;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.container form .signup a{
    color: #16a085;
    text-decoration: none;
    margin-left: 2px;
    
}

.container form .signup a:hover{
    text-decoration: underline;
}
.container form .signup{
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    color: red;
}

.container form .rowbtn input:hover{
    background: #12876f;
}
.row{
    position: relative;
}
#open-eye,#closed-eye{
    background-color: transparent;
    color: black;
    position: absolute;
    right: 5px;
    top: 15px;
    font-size: 15px;
    height: 10px;
}

.hide{
    display: none;
}
