body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}

form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

h2 {
    margin-bottom: 15px;
    color: #333;
}

label {
    font-size: 16px;
    display: block;
    margin-top: 10px;
    text-align: left;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
}

fieldset {
    border: none;
    margin-top: 15px;
    text-align: left;
}

input[type="checkbox"], input[type="radio"] {
    transform: scale(1.2);
    margin-right: 5px;
}

#mySubmit {
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 15px;
}

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

p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}
