body{
    background-color: wheat;
    display: flex;
    justify-content: center;
    height:100vh;
    align-items: center;
}

.parent{
    width:400px;
    height:400px;
    background-color: sandybrown;
    border-radius: 20px;
}

.parent h1{
    font-size:35px;
    color:black;
    text-align: center;
}

.parent form{
    width:300px;
    height:200px;
    margin-left: 80px;
}

.parent label{
    font-size:25px;
    color:black;
}

.parent input{
    width:250px;
    height:30px;
    border:none;
    border-bottom: 2px solid black;
    background-color: transparent;
}

.parent .btn{
    width:150px;
    height:40px;
    border: none;
    border-radius: 20px;
    background-color: orangered;
    font-size: 20px;
    color:white;
}

.parent .btn:hover{
    transform: scale(1.1);
}