@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

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%;
    padding-left: 60px;
    padding-right: 15px;
    border-radius: 5px;
    outline: none;
    border: 1px solid lightgray;
    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;
    width: 47px;
    height: 100%;
    color: #fff;
    background: #16a085;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 5px 0  0 5px;
}

.container form .bottom input{
    border: none;
    background: #16a085;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    border: 1px solid #16a085;
    cursor: pointer;

}

form .bottom input:hover{
    background: #12876f;
}

.container form .pass{
    margin: -8px 0 20px 0;
    font-size: 15px;
}



.container form .pass a{
    text-decoration: none;
    color: #16a085;
}

.container form .pass a:hover{
    text-decoration: underline;
}

.container form .signup-link{
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.container form .signup-link a{
    text-decoration: none;
    color: #16a085;
}

.container form .signup-link a:hover{
    text-decoration: underline;
}