*{
   margin: 0px; 
   padding:0px;
   font-family: cursive;
   box-sizing: border-box;
}
body{
 height:100vh;
 background: linear-gradient(to right,rgb(211, 96, 192),rgb(133, 46, 122),rgb(65, 5, 54));
 display: flex;
 justify-content: center;
 align-items: center;
}
.box{
    background-color: white;
    width: fit-content;
    padding:50px;
    box-shadow: 5px 5px 10px;
}
input{
    padding: 10px;
    border-radius:5px;
}
h1{
    color: rgb(52, 23, 165);
}
input[type="button"]{
    background-color: rgb(164, 30, 155);
}
label{
    color: rgb(29, 29, 136);
}