section{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
form{
    width: 30%;
    background-color: #72727200;
    margin-top: 40px;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
form h1{
    font-size: 50px;
    margin-bottom: 40px;
    color: whitesmoke;
}
form input{
    width: 100%;
    height: 30px;
    padding: 10px;
    border-radius: 10px;
    border: none;

}
form input[type="submit"]{
    width: 160px;
    height: 40px;
    background-color: rgb(255, 0, 179);
    color: rgb(255, 255, 255);
    font-size: 20px;
    cursor: pointer;
}
form a{
    margin-top: 20px;
}