.mailSubsPg .stdPgCover {
    margin-top:20px;
}

input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.sb {
    margin-top: -31px;
    margin-bottom: 20px;
    color:#fe00fe;
    margin-left: 80px;
}

.mailSubsPg  {
    position: relative;
}

.formWrap {
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

    .formWrap h2 {
        color: #fe00fe;
        font-size:24px;
    }

    .formWrap h3 {
        color: #2adfec;
    font-size: 22px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: bold;
    }


.formWrap form {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.mailSubsForm {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#hMailSubText {
    color:grey;
}

    .mailSubsForm p {
        color: #f00;
    }

    .mailSubsTxtblk {
        text-align: center;
        padding: 5px;
        border-radius: 4px;
        border: 0;
        height: 40px;
        width: 200px;
    }

.mailSubsBtn {
    height: 40px;
    padding: 5px;
    border-radius: 4px;
    border: 0;
    width: 200px;
    background-color: #0199ff;
    color: #ffffff;
    font-weight: bold;
}

.mailSubsMsg {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

    .mailSubsMsg p {
        margin: 0;
    }

.mailSubsMsg .lds-dual-ring {
    width: 50px;
    height: 50px;
}

    .mailSubsMsg .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 30px;
        height: 30px;
        margin: 10px;
        border-radius: 50%;
        border: 4px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   Subscription Pages Shared Styles
   (mail-subscriptions + push-notification-subscriptions)
   ============================================ */

.premium-card {
    background: rgba(30, 30, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.premium-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.premium-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.premium-btn-verify,
.premium-btn-save {
    position: relative;
    overflow: hidden;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.premium-btn-verify::before,
.premium-btn-save::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 70%);
    animation: btn-shine 3s infinite linear;
}

@keyframes btn-shine {
    0% {
        left: -100px;
    }
    100% {
        left: 100%;
    }
}

.premium-btn-verify:hover,
.premium-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.premium-btn-verify:disabled,
.premium-btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.error-msg {
    color: #ff4d4d;
    margin-top: 10px;
    font-weight: 500;
}

/* Push Notification Subscription Modal (pushie) */
.pushieModal .modal-content {
    background: rgba(25, 25, 30, 0.97);
    border: 1px solid rgba(0, 123, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.pushieModal .modal-body {
    padding: 1.25rem 1.75rem;
}

.pushieModal .modal-body p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
}

/* Yes, please! button in pushie modal */
.pushieModal .btn-outline-blue {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pushieModal .btn-outline-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 70%);
    animation: btn-shine 3s infinite linear;
}

.pushieModal .btn-outline-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Subtle secondary button (No, Later) styling for dark modal */
.pushieModal .modal-footer .btn-modal-secondary {
    color: #b0b0b0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
}

.pushieModal .modal-footer .btn-modal-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
