
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #1abc9c;
    overflow: auto;
}

::selection{
    background: rgba(26,188,156,0,3);
}

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

.wrpper{
    width: 100%;
    background: #fff;
    border-radius: 5px;
box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}

.wrpper .title{
    height: 90px;
    background: #16a085;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrpper form{
    padding: 50px 45px 45px 45px;
}

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

.wrpper form .row input{
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 60px;
    border-radius: 5px;
    border: 1px solid lightgray;
    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);
}

form .row input::placeholder{
    color: #999;
}

.wrpper form .row i{
    position: absolute;
    width: 47px;
    height: 100%;
    color: #fff;
    font-size: 15px;
    background: #16a085;
    border: 1px solid #16a085;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items:  center;
    justify-content: center;
}

.wrpper form .pass{
    margin: -8px 0 20px 0;
}

.wrpper form .pass a{
    color: #16a085;
    font-size: 17px;
    text-decoration: none;
}

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

.wrpper form .button input{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 0px;
    background: #16a085;
    border: 1px solid #16a085;
    cursor: pointer;
}

form .button input:hover{
    background: #0c5345;
}

.wrpper form .signup-link{
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
}
.wrpper form .signup-link a{
    color: #16a085;
    text-decoration: none;
}

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

.selectbox{
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    font-size: 1.15rem;
    padding: 0.505em 7em 0.405em 1em;
    background-color: #fff;
    border: 1px solid #caced1;
    border-radius: 0.25rem;
    color: #000;
    cursor: pointer;
}

