body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
}

label {
    display: block;
    width: 100%;
    text-align: left;
}

input {
    display: block;
    width: 100%;
    padding: 2%;
    box-sizing: border-box;
    border: 2px solid #ddd;
    border-radius: 5px;
}

#box {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 1%;
    background-color: #FFFFFF;
}

button {
    padding: 3%;
    border-radius: 10px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #070707;
    width: 100%;
    font-size: 16px;
}


