@font-face {
    font-family: 'RedHat';
    src: url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Estilo para las opciones de radio */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Espaciado entre las opciones */
    margin-top: 10px;
}

.radio-group input[type="radio"] {
    display: none; /* Ocultar el radio original */
}

.radio-group label:not(.main-label) {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s, border-color 0.3s;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    /* Add logic to remove existing attributes */
    /* Assign the new attribute dynamically */
}

.radio-group label:hover {
    background-color: #e9ecef;
}

.form-control {
    background-color: transparent !important;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.form-group {
    margin-bottom: 25px;
}

.confirm-form {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px 0;
    margin: 0;
    font-family: "RedHat";
}

#rsvp_bus_service,#rsvp_food_preferences,#rsvp_attendance,#rsvp_companion_bool {
    border: none !important;
}
body {
    background-color: #faf7f0 !important;
    font-size: 1.8vw !important;
}
.form-group {
    height: fit-content;
    font-size: 1.8vw !important;
}
.form-control, .btn {
    font-size: 1.8vw !important;
}
@media (max-aspect-ratio: 9 / 12) {
    body, .form-group, .form-control, .btn, #form-summary {
        font-size: 3.5vw !important;
    }

}

.conf-form-cont {
    width: 100vw !important;
    height: 100vh !important;
    flex-direction: column;
}

#form-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.8vw;
}

#form-summary h3 {
    margin-bottom: 15px;

}
#form-summary p {
    margin: 5px 0;
}