
#spacing {
    padding-top: 50px;
}

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

h2 {
    text-align: center;
    color: #2c3e50
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group label {
    display: inline-block;
    padding: 10px 20px;
    margin: 6px;
    border: 2px solid #2c7be5;
    border-radius: 6px;
    background-color: #fff;
    color: #2c7be5;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.checkbox-group label:hover {
    background-color: #e5f1ff;
}

.checkbox-group input[type="checkbox"]:checked + label {
    background-color: #2c7be5;
    color: white;
    border-color: #2c7be5;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2c7be5;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

button:hover {
    background-color: #1a5ec8;
}

@media (max-width: 600px) {
    .form-wrapper {
        box-shadow: none;
    }
}