/* General container styling */
.subscribe-container {
    max-width: 72rem;
    padding: 2.5rem 1rem;
    margin: 0 auto;
  }
  
  @media (min-width: 1024px) {
    .subscribe-container {
      padding: 4rem 2rem;
    }
  }
  
  /* Centering text and form */
  .subscribe-content {
    max-width: 36rem;
    text-align: center;
    margin: 0 auto;
  }
  
  /* Title Styling */
  .subscribe-title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
  }
  
  @media (min-width: 768px) {
    .subscribe-title {
      font-size: 1.875rem;
    }
  }
  
  /* Form Styling */
  .subscribe-form {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 640px) {
    .subscribe-form {
      flex-direction: row;
      gap: 0.75rem;
    }
  }
  
  /* Input field styling */
  .subscribe-input {
    width: 93%;
    padding: 0.75rem 1rem;
    border: 1px solid #3b82f6;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
  }
  
  .subscribe-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
  }
  
  /* Button Styling */
  .subscribe-button {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #2563eb;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
  }
  
  .subscribe-button:hover {
    background-color: #1e40af;
  }
  
  @media (min-width: 640px) {
    .subscribe-button {
      width: auto;
      white-space: nowrap;
    }
  }
  