
     /* ---- newsletter y titulo -- */


            .newsletter-container {
                margin-top: 20px;
                background-color: #d8bf8b;
                padding: 25px 15px 15px 0px;
                display: flex;
                flex-direction: column;
                align-items: center;
                
                border-radius: 20px;
                /*max-width: 50vw;*/
            }
            .newsletter-container h2 {
                font-family: Raleway;
            }
            /* .newsletter-container > form > div {
                padding-top: 20px !important;
            } */

  
  
  /* Container styling */
  .custom-kit-container {
    max-width: 500px;
    font-family: inherit;
  }

  /* One-line flexbox for input and button */
  .custom-kit-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }

  .custom-kit-input {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .custom-kit-input:focus {
    border-color: #1677be;
  }

  .custom-kit-submit {
    padding: 12px 24px;
    background-color: rgb(209, 129, 3);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  /* Disabled state for the button */
  .custom-kit-submit:disabled {
    background-color: #777;
    cursor: not-allowed;
    opacity: 0.7;
  }

  .custom-kit-submit:not(:disabled):hover {
    opacity: 0.9;
  }

  /* Checkbox styling */
  .custom-kit-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #4d4d4d;
    line-height: 1.4;
  }

  .custom-kit-checkbox-group input {
    margin-top: 2px;
    cursor: pointer;
  }

  .custom-kit-checkbox-group label {
    cursor: pointer;
  }

  /* Success/Error Message styling */
  .custom-kit-message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
