body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #e3f2fd;
}

.container {
    width: 450px;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

h2 {
    text-align: center;
    color: #0d47a1;
}

label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    height: 40px;          /* SAME HEIGHT for all */
    padding: 8px;
    box-sizing: border-box; /* IMPORTANT */
}

button {
    margin-top: 20px;
    padding: 10px;
    width: 48%;
    border: none;
    border-radius: 5px;
    background: #0d47a1;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #1565c0;
}

.reset {
    background: #9e9e9e;
    float: right;
}

.reset:hover {
    background: #757575;
}
