/**
 * Turgame Email 2FA - Styles
 */

/* 2FA Container */
#turgame-2fa-container {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

/* Message */
.turgame-2fa-message {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.turgame-2fa-error {
    color: #dc3232;
    display: block;
    padding: 10px;
    background: #fff;
    border-left: 4px solid #dc3232;
    text-align: left;
}

.turgame-2fa-success {
    color: #46b450;
    display: block;
    padding: 10px;
    background: #fff;
    border-left: 4px solid #46b450;
    text-align: left;
}

/* OTP Input */
#turgame_2fa_otp {
    width: 150px !important;
    text-align: center;
    font-size: 24px !important;
    letter-spacing: 8px;
    padding: 12px !important;
    margin: 0 auto;
    display: block;
}

/* Actions */
.turgame-2fa-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.turgame-2fa-actions button {
    min-width: 120px;
}

#turgame-2fa-verify {
    background: #0073aa !important;
    border-color: #0073aa !important;
    color: #fff !important;
}

#turgame-2fa-verify:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
}

#turgame-2fa-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#turgame-2fa-resend {
    background: #f0f0f1 !important;
    border-color: #8c8f94 !important;
    color: #1d2327 !important;
}

#turgame-2fa-resend:hover {
    background: #dcdcde !important;
}

/* Timer */
.turgame-2fa-timer {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

/* WordPress Login Page Specific */
.login #turgame-2fa-container {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 16px 0;
}

.login #turgame_2fa_otp {
    width: 100% !important;
    max-width: 150px;
}

.login .turgame-2fa-actions {
    flex-direction: column;
}

.login .turgame-2fa-actions button {
    width: 100%;
}

/* WooCommerce Specific */
.woocommerce-form-login #turgame-2fa-container {
    width: 100%;
    margin: 20px 0;
}

.woocommerce #turgame-2fa-container .woocommerce-button {
    margin: 5px;
}

.woocommerce #turgame_2fa_otp {
    width: 150px !important;
    margin: 10px auto !important;
    display: block !important;
}

/* Responsive */
@media (max-width: 480px) {
    #turgame-2fa-container {
        padding: 15px;
    }

    #turgame_2fa_otp {
        width: 100% !important;
        max-width: 150px;
        font-size: 20px !important;
        letter-spacing: 6px;
    }

    .turgame-2fa-actions {
        flex-direction: column;
    }

    .turgame-2fa-actions button {
        width: 100%;
    }
}

/* Admin Settings Page */
.turgame-settings-wrap .turgame-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.turgame-settings-wrap .turgame-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.turgame-settings-wrap .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

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

.turgame-settings-wrap input:checked + .toggle-slider {
    background-color: #0073aa;
}

.turgame-settings-wrap input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* My Account Settings */
.turgame-2fa-user-setting {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.turgame-2fa-user-setting h4 {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.turgame-2fa-user-setting h4 .dashicons {
    color: #0073aa;
}

.turgame-2fa-user-setting label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.turgame-2fa-user-setting input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.turgame-2fa-user-setting p.description {
    margin: 10px 0 0 28px;
    color: #666;
    font-size: 13px;
}

.turgame-2fa-user-setting .turgame-2fa-disabled-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 13px;
}
