body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgb(221, 221, 221);
}

form {
    background-color: rgb(255, 255, 255);
    padding: 100px;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

label {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #002eac;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #002eac;
}
