@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: #b492f4;
    overflow: hidden;
}

.container{
    max-width: 440px;
    padding: 0 20px;
    margin: 170px auto;
}

.wrapper{
    width: 100%;
    background: #fff;
    border-radius: 5px;
}

.wrapper .title{
    line-height: 88px;
    background: #b572e8;
    text-align: center;
    border-radius: 5px 5px 0 0;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.wrapper form{
    padding: 30px 25px 25px 25px;
}

.wrapper form .row {
    height: 45px;
    margin-bottom: 15px;
    position: relative;
}

.wrapper form .row input{
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 60px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
}

form .row input:focus{
    border-color: #b572e8;
    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: #b572e8;
    border: 1 px solid #b572e8;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper form .pass {
    margin: -10px 0 20px 0;
}

.wrapper form .pass a{
    color: #b572e8;
    font-size: 17px;
    text-decoration: none;
}

.wrapper form .pass a:hover{
    text-decoration: underline;
}

.wrapper form .button input{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding-left: 0px;
    background: #b572e8;
    border: 1px solid #b572e8;
    cursor: pointer;   
}

form .button input:hover{
    background: #9c59cf;
}

.wrapper form .signup-link{
   text-align: center;
   margin-top: 20px;
   font-size: 17px;
}

.wrapper form .signup-link a{
    color: #b572e8;
    text-decoration: none;
}

form .signup-link a:hover{
    text-decoration: underline;
}