body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e2b98c;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the right */
}

label {
    margin-bottom: 8px;
    margin-right: 10px; /* Add margin to the right */
}

input {
    padding: 8px;
    margin-bottom: 16px;
}

button {
    padding: 10px;
    background-color: #b1916e;
    color: black;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #b1916eba;
}

