body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

label {
    display: block;
    margin-top: 10px;
}

input, button {
    width: 95%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 8px;
}

button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}
