.human-verify-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    gap: 20px;
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

input:checked + .slider:before {
    transform: translateX(25px);
}

.verify-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}



/* Estilos para botón deshabilitado */
.submit-btn {
    max-width: 180px;
}

.submit-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: scale(0.98) !important;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #333, #444) !important;
    box-shadow: none !important;
    pointer-events: none;
}

/* Anular cualquier efecto hover del botón cuando está deshabilitado */
.submit-btn.disabled:hover {
    background: linear-gradient(45deg, #333, #444) !important;
    transform: scale(0.98) !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Animación sutil para el switch */
.switch-container:hover .slider {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .human-verify-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .switch-container {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }
}
