/* Contenedor del checkbox y el link */
.check-container {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

/* Link de aviso de privacidad */
.check-container a {
    color: #004AAD;
    text-decoration: none;
    font-weight: 600;
}

.check-container a:hover {
    text-decoration: underline;
}

/* Estilo para el checkbox */
.check-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    cursor: pointer;
}

/* SweetAlert estilos opcionales */
.swal2-popup {
    font-size: 16px !important;
}

/* SweetAlert siempre arriba */
.swal2-container {
    z-index: 999999 !important;
}