body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
}

/* Center form */
.form-container {
    width: 400px;
    margin: 50px auto;
}

/* Form styling */
form {
    background: white;
    padding: 25px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

/* Labels */
label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Inputs, select, textarea */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

/* Focus state */
input:focus, textarea:focus, select:focus {
    border-color: #007BFF;
    outline: none;
    background-color: #eef6ff;
}

/* Remove top border for one input */
.no-top-border {
    border-top: none;
}

/* Inline radio buttons */
.inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Dropdown color change */
select {
    background-color: #333;
    color: white;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    font-size: 18px; /* larger text */
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}