/* CSS Document */
/* style.css */
#vcCardForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px !important;
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
}
#vcCardForm h2 {
    font-size: 26px;
    margin-bottom: 20px;
}
@media (max-width: 1200px) {
    #vcCardForm h2 {
        font-size: 26px;
    }
}
@media (max-width: 992px) {
    #vcCardForm h2 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    #vcCardForm h2 {
        font-size: 20px;
    }
}
@media (max-width: 576px) {
    #vcCardForm h2 {
        font-size: 20px;
    }
}
#vcCardForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
#vcCardForm input[type="text"],
#vcCardForm input[type="tel"],
#vcCardForm input[type="email"],
#vcCardForm input[type="url"] {
    width: 100% !important;
    padding: 6px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
}
#vcCardForm button {
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#vcCardForm button:hover {
    opacity: 0.8;
}
.hidden-section {
    display: none;
}
/* Styling for the radio buttons and their container */
.radio-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.radio-container label {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Spacing between the radio button groups */
    font-size: 16px;
}
.radio-container input[type="radio"] {
    margin-right: 10px;
}