.containerCT {
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #5A462C;
    font-size: 55px;
    margin: 0 0 50px 0;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}


.contact-info .info-item div {
    font-size: 16px;
    color: #AB834D;
    margin-top: -10px;
}

.contact-form form label {
    margin-bottom: 5px;
    color: #776354;
    font-size: 20px;
}

.contact-form form .asterisco::after {
    content: '*';
    color: red;
    margin-left: 5px;
    font-size: 1.1em;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #BAC782;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form form textarea {
    resize: vertical;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #b3b17e;
    color: #635234;
    border: none;
    padding: 15px;
    font-size: 1.8em;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

/* Personalización de los radio buttons */
.radio-group input[type="radio"] {
    appearance: none; /* Elimina el estilo predeterminado del navegador */
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #bac782;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.radio-group input[type="radio"]:checked {
    background-color: #bac782;
    border-color: #bac782;
    position: relative;
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
}

.submit-btn:hover {
    background-color: #5A462C;
    color: #ffffff; /* Puedes ajustar el color del texto al hacer hover si lo deseas */
}


/* Color del checkbox cuando está marcado */
.form-check-input:checked {
    background-color: #bac782; /* Cambia el color al marcarlo */
    border-color: #bac782; /* Borde del checkbox cuando está marcado */
    position: relative;
}

/* Ajustar el tamaño si quieres un tamaño específico */
.form-check-input {
    width: auto;
    height: auto;
}

.toast.showing {
    opacity: 0;
    transform: translateY(20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.hide {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}