.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;

}


/* 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: 14px;
    }
    .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: center center; /* Mantiene la escala centrada */
    
}

@media (max-width: 1500px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.85); /* Reduce aún más el tamaño */
    }
}

@media (max-width: 400px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.75); /* Reduce aún más el tamaño */
    }
}