@import url('https://fonts.googleapis.com');
@import url('https://fonts.gstatic.com');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Nunito:wght@600;700;800&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Heebo",sans-serif;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #042b64;
}

.wrapper{
    width: 330px;
    padding: 1rem 1rem;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-top: 80px;
    margin-bottom: 85px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

h1{
    font-size: 1.5rem;
    color: #07001f;
    margin-top: 5px;
}

form input{
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 50px;
    background: #e4e4e4;
}

.btn{
    font-size: 1rem;
    margin-top: 1.8rem;
    padding: 10px 0;
    border-radius: 20px;
    outline: none;
    border: none;
    width: 90%;
    color: #fff;
    cursor:pointer;
    background: #042b64;
}

.btn:hover{
    background: rgba(2, 53, 73, 0.877);
}

input:focus{
    border: 5px solid rgb(192, 192, 192);
}

.terms{
    margin-top: 0.2rem;
    padding-left: 1.2;
}

.terms input{
    height: 1rem;
    width: 1rem;
    vertical-align: middle;
    cursor: pointer;
}

.terms a{
    font-size: 0.55rem;
    margin-bottom: 5rem;
}

.terms label{
    padding-right: 5rem;
    padding-top: 2rem;
}

.form-check{
    padding-bottom: 5rem;
}

.terms{
    padding-top: 25px;
}

.member{
    font-size: 0.8rem;
    margin-top: 1.4rem;
    color: #636363;
}

.member a{
    color: rgb(17, 107, 143);
    text-decoration: none;
}

.recover{
    text-align: right;
    font-size: 0.7rem;
    margin: 0.3rem 1.4rem 0 0;
}

.recover a{
    text-decoration: none;
    color: #464647;
}

.form-select{
    width: 100%;
    padding: 5px 17px;
    margin-top: 20px;
    border-radius: 20px;
}

.form-check{
    margin-top: 5px;
}