/* =========================================
   DQMate Subscribe Module
========================================= */

#dqmateSubscribeForm {
    position: relative;
}

/* =========================================
   Loading State
========================================= */

#dqmateSubscribeBtn.loading {
    opacity: 0.7;
    pointer-events: none;
}

#dqmateSubscribeBtn.loading span {
    animation: dqmateArrowMove 0.8s infinite;
}

/* =========================================
   Smooth Transition
========================================= */

#dqmateSubscribeBtn {
    transition:
        all 0.25s ease;
}

/* =========================================
   Hover Effect
========================================= */

#dqmateSubscribeBtn:hover {
    transform: translateY(-1px);
}

/* =========================================
   Active Click Effect
========================================= */

#dqmateSubscribeBtn:active {
    transform: scale(0.98);
}

/* =========================================
   Input Focus
========================================= */

#dqmateSubscribeForm input:focus {
    outline: none;
}

/* =========================================
   Arrow Animation
========================================= */

@keyframes dqmateArrowMove {

    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* =========================================
   Toast Popup
========================================= */

.dqmate-toast-popup {

    position: fixed;

    top: 30px;
    right: 30px;

    background: #111827;

    color: #ffffff;

    padding: 16px 22px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 500;

    z-index: 999999;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);

    opacity: 0;

    transform: translateY(-10px);

    transition:
        all 0.3s ease;
}

/* =========================================
   Toast Show
========================================= */

.dqmate-toast-popup.show {

    opacity: 1;

    transform: translateY(0);
}

/* =========================================
   Success Toast
========================================= */

.dqmate-toast-popup.success {

    background: #16a34a;
}

/* =========================================
   Info Toast
========================================= */

.dqmate-toast-popup.info {

    background: #eb2550;
}