/* FORM CSS */
form {
    width: 450px; /* Set form width to 450px */
    margin: 20px; /* Remove default margins */
}
label {
    display: block; /* Make label a block element */
    margin-bottom: 5px; /* Add space below the label */
}
input, select, textarea {
    width: 100%; /* Make inputs stretch to the width of the form */
    padding: 4px;
    margin-bottom: 8px; /* Add space below the input */
    box-sizing: border-box; /* Prevent padding from affecting width */
}

h2 {
    color: blue;    
}