*{
    margin: 0px ;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body{
   display: flex;
   align-items: center;
   justify-content:center;
   min-height: 100vh;
   background: #4285fa; 
}
.wrapper{
    background: #ffffff;
    width: 450px;
    padding: 28px;
    border-radius: 7px;
}
.wrapper .pass-field {
    height: 65px;
    width: 100%;
    position: relative;
}
.pass-field input {
    width: 100%;
    height: 100%;
    padding: 0, 17px;
    outline: none;
    font-size: 1.3rem;
    border: 5px;
    border: 1px solid #999;
}
.pass-field i{
    right: 18px;
    top: 50%;
    color: #999;
    font-size: 1.2rem;
    position: absolute;
    transform: translatey(-50%);
}
.content{
    margin: 20px 0 10px;
}
.content p {
    font-size: 20px;
    margin-bottom: 10px;
}
.requirement-list li{
 list-style: none;
 font-size: 1.3rem; ;
 display: flex;
 align-items: center;
 margin-bottom: 15px;
}
.requirement-list li i { 
    font-size: 0.9rem;
    color: #aaa;
    width: 20px;
}
.requirement-list li span{
    margin-left: 12px;
}
