/* General Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Form Container */
.container {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #444;
    margin-bottom: 6px;
}

/* Inputs & Selects */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
button {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
}

input:focus,
select:focus {
    outline: none;
    border-color: #007BFF;
}

/* Inline Groups */
.inline-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.inline-label {
    flex: 1;
}

/* Radio Buttons */
input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Buttons */
button {
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    border: none;
    padding: 14px;
}

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

/* Responsive */
@media (max-width: 600px) {
    .inline-group {
        flex-direction: column;
    }
}
