body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}
h2 {
    color: #333;
}
form div {
    margin-bottom: 10px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
    border: 1px solid #ccc;
    border-radius: 4px;
}
button[type="submit"] {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button[type="submit"]:hover {
    background-color: #4cae4c;
}