body
{
    margin: 0;
}

.subscription-container 
{
    /*background: rgb(242,242,242);
    border-radius: 15px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.3); */
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
    .subscription-container img
    {
        width: 50%;
        border-radius: 50%;
        margin: 0 auto;
    }
   
    .subscription-container h2 
    {
        color: #435C71;
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 20px;
        font-weight: bold;
    }

.subscription-container h2.bb {
    background: none;
    color: darkred;
}


.subscription-container p
    {
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-input 
    {
        width: 90%;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 25px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .continue-button 
    {
        display: inline-block;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        color: #fff;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        margin-top: 0px;
        transition: background 0.3s ease, transform 0.3s ease;

        border: none;
        width: 95%;
        margin-bottom: 20px;

    }


      @media (max-width: 768px) {
          .continue-button {
              background: green;
              border-radius: 5px;
          }

          .form-input {
              border-radius: 5px;
          }

          .subscription-container img {
              width: 30%;
          }
      }
.terms
{
    text-align: center;
    margin: auto;
    font-size: 12px;
    color: #333;
}

.terms a {
    color: inherit;
    text-decoration: none;
}

