.account-section{
    max-width: 800px;
    background: rgb(29,35,27,0.7);
    border-radius: 20px;
    padding: 3rem 3rem 2rem 3rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.account-section h1 {
    font-size: 3.6rem;
}

.account-section h2 {
    font-size: 2rem;
}

#accounts-cont{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 2rem 8rem 2rem;
    min-height: 100vh;
}

@media (max-width: 576px){
    #accounts-cont {
        padding: 4rem 0rem 4rem 0rem;
    }

    .account-section{
        padding: 10% 5% 5% 5%;
    }

    .account-section h1 {
        font-size: 2.8rem;
    }
    
    .account-section h2 {
        font-size: 1.8rem;
    }
}

.button-cont {
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
}

#manage-sub-btn, #loader, #sign-out-btn, #get-sub-btn, #go-to-checkout-btn {
    display: none;
}

#manage-sub-btn, #get-sub-btn, #loader {
    margin-left: 10px;
    margin-right: 10px;
}

#message-txt { 
    display: none;
}

#message-txt, #web-sub-header, #sign-in-cnt, #offers-cnt  { 
    transition: 1s ease;
}

#offers-cnt, #sign-in-cnt {
    width: 100%;
}

.pl-20 {
    padding-left: 20px;
}

#fine-print {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #e0e0e0;
    text-align: center;
}

#fine-print a {
    color: unset;
    text-decoration: underline;
}

#go-to-checkout-btn {
    position: relative;
    padding: 10px 26px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, rgb(91, 128, 82), rgb(113, 159, 102));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    transition: all 0.6s ease;
}

#go-to-checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -105%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.3s;
}

#go-to-checkout-btn:hover {
    background: linear-gradient(90deg, rgb(72, 101, 65), rgb(96, 134, 86));
    border-radius: 50px;
}

#go-to-checkout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -105%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    animation: wave-animation 6s infinite ease-in-out;
}

@keyframes wave-animation {
    0%, 90% {
        left: -105%;
    }
    100% {
        left: 105%;
    }
}