/* For subscription.php*/
.subctext
{
    text-align: center;
}

.sub_container
{
    padding: 2rem;
    margin-top: 100px;
}

.square-box
{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.square-box .sub-box
{
    width: 275px;
    height: 400px;
    outline-color: black;
    background-color: #d9d4c7;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.square-box .sub-box img
{
    position: static;
    margin-top: auto;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.square-box .sub-box h3
{
    width: 180px;
    height: 40px;
    background-color: #585145;
    color: #d9d4c7;
    position: static;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.join
{
    width: 100px;
    height: 40px;
    background-color: #027a3f;
    color: white;
    position: static;
    border-radius: 50px;
    margin-top: auto;
}

.square-box .sub-box p
{
    font-size: 20px;
}

.square-box .sub-box .sub-price
{
    font-size: 25px;
    font-weight: bold;
}

.sub_container .sub-message 
{
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    padding: 5px;
}

.toast-container {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.toast-container.show {
    visibility: visible;
    animation: fadein 0.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

.renew-container {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center;     /* Aligns checkbox and text vertically */
    margin-top: 20px;        /* Adds some space above the checkbox */
    width: 100%;             /* Ensures it takes the full width of the form */
}