body{
    background-color: pink;
    display: flex;
    justify-content: center;
    height:100vh;
    align-items: center;
}

.parent{
    width:400px;
    height:400px;
    background-color: rgb(210, 79, 79);
    border-radius:20px;
}

.parent h1{
    color:white;
    text-align: center;
    font-size:40px;
}

.parent .input-box{
    width:300px;
    height:200px;
    margin-left: 40px;
}

.parent label{
    font-size:25px;
    color:white;
}

.parent input{
    width:200px;
    height:20px;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid black;
}

.parent .btn{
    width:150px;
    height:40px;
    border: none;
    background-color: black;
    color: white;
    font-size:22px;
    border-radius: 20px;
    margin-left: 80px;
    margin-top:30px;
}

.parent h2{
    font-size: 30px;
    color: white;
    text-align: center;
}