*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#box{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: white;
    box-shadow:1px 1px 10px rgb(67, 67, 67);
    width: 300px;
    height: 400px;
    border-radius: 10px;
    box-sizing: border-box;
    transform: translate(700px, 200px);
}

#box h2 {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box2 {
    padding: 10px ;
    display: flex;
    gap: 16px;
    flex-direction: column;
}


#box2 label{
    color: rgb(48, 48, 48);
}

#box input{
    padding: 5px;
}

#box button{
    background-color: rgb(33, 129, 255);
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: none;
}