@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: Ubuntu;
    font-weight: 400;
    font-size: 15px;
}
nav{
    display: flex;
    align-items: center;
    width: 100vw;
    padding: 0 150px;
}
nav .left{
    width: 50%;
}
.left img{
    width: 140px;
}
nav .right{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 50%;
    gap: 35px;
}
.right img{
    width: 40px;
}
.right a{
    text-decoration: none;
    color: black;
    font-size: 15px;
} 
nav a:hover{
    cursor: pointer;
}

.center-body{
    background-color: #F4F4F4;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.center-body h1{
    padding-top: 65px;
    font-size: 33px;
    font-weight: 200;
    padding-bottom: 25px;
}
.center-body h5{
    font-size: 20px;
    font-weight: 100;
}
.center-body .container{
    border: 1px solid gray;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px 0 50px 0;
    padding: 25px 75px;
    gap: 25px;
}
.container .last-name, .security-pin, .dob{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.container h2{
    font-size: 19px;
    font-weight: 600;
}
.container .last-name, .security-pin, .dob{
    width: 100%;
}
.container label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.container input{
    font-size: 18px;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 5px;
    border: none;
    border: 1px solid gray;
}
.security-pin a{
    margin-top: 20px;
    font-size: 15px;
    color: blue;
    text-decoration: none;
    margin-bottom: 20px;
}
.container .btn{
    width: 100%;
    font-size: 25px;
}
.btn button{
    font-size: 25px;
}