/* Reset some default browser styles */
body, h2, h3, p, label, input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    padding: 40px;
    line-height: 1.6;
}

form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #004080;
    margin-bottom: 16px;
}

p {
    margin-bottom: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 8px;
}

label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="submit"] {
    background-color: #007acc;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #005f99;
}

input[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
