.rc-anchor-light.rc-anchor-normal, 
.rc-anchor-light.rc-anchor-compact {
    border: 0px;
}
.btn-form {
    color: #fff;
    margin-top: 10%;
    width: 90%;
    border-radius: 14px;
}

#form {
    text-align: center;
    height: 100%;
}
.form-control{
    border: 1px solid #949494;
}

a {
    text-decoration: none;
    text-decoration-color: white;
    color: white;
}
.btn:hover {
    color: #fff!important;
    border-color: #fff;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

.card{
    border-radius: 45px;
    box-shadow: 
        0 0 10px 5px rgba(226, 20, 126, 0.5),  /* capa interior */
        0 0 20px 10px rgba(226, 20, 126, 0.3), /* capa media */
        0 0 30px 15px rgba(226, 20, 126, 0.1); /* capa externa */
}
.card-header {
    font-size: 1.4rem;
    margin-top: 1rem;
    line-height: normal;
    border-radius: inherit!important;
}
.card-title{
    color: #949494;
}
.card-body,
.card-header{
    border-color: #fff;

}

/*warning style*/
.alert-custom {
    background-color: #fff0f0;
    border: 1px solid #f25c5c;
    color: #d03030;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
}

.close-btn {
    cursor: pointer;
    font-weight: bold;
    border: none;
    background: none;
    font-size: 1.2rem;
    line-height: 1;
}

.form-wrapper {
    position: relative; /* para contener la alerta flotante */
}
/*warning style*/
.alert-custom {
    position: absolute;
    top: -60px; /* Ajustá según tu diseño */
    left: 0;
    background-color: #fff0f0;
    border: 1px solid #f25c5c;
    color: #d03030;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 100%;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mostrar con animación */
.alert-custom.show {
    opacity: 1;
    transform: translateY(0);
}

/* Media */
@media (max-width: 1026px) {
    .tittle-form {
        text-align: center;
        margin: 5% 0 !important;
        font-size: 16px;
        color: #fff;
    }
}

@media (max-width: 950px) {
    h5 {
        font-size: 25px;
    }
    .btn-form {
        width: 100%;
    }

    .tittle-form {
        font-size: 30px;
    }
}
@media (max-width: 426px) {
    .tittle-form {
        font-size: 20px;
    }
}


/* CAPTCHA */
.recaptcha-container {
    display: inline-block; /* Asegura que el contenedor sea adaptable */
    width: 100%; /* Se ajusta al tamaño del padre */
    text-align: center; /* Centra el captcha */
}

.recaptcha-container .g-recaptcha {
    transform-origin: 0 0 ; /* Mantiene la escala centrada */
    object-fit: cover;
    transform: scale(0.90);
}

@media (max-width: 1500px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.80); /* Reduce aún más el tamaño */
    }
}

@media (max-width: 400px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.70); /* Reduce aún más el tamaño */
    }
}