body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px
}

form {
    border-radius: 8px;
    padding: 30px;
    width: 500px;
    margin: 50px auto;
    background-color: #fff;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

input:focus, select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

