*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #0F172A;
    color: #F8FAFC;
    font-family: Poppins, sans-serif;
    align-items: center;
    justify-content: center;
}
h1{
    font-size: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box{
    background: #1E293B;
    width: 100%;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
p{
    font-size: 24px;
    margin-top: 11px;
}
input{
    width: 300px;
    height: 30px;
    font-family: Poppins, sans-serif;
    color: blue;
}
button{
    background: #283e70;
    color: white;
    height: 30px;
    width: 55px;
    border-radius: 6px;
    margin-left: 5px;
}