.sml_subscribe {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: inherit;
  }
  
  .sml_subscribe p {
    margin-bottom: 15px;
  }
  
  .sml_subscribe label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
  }
  
  .sml_subscribe input[type="text"],
  .sml_subscribe input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.2s ease-in-out;
  }
  
  .sml_subscribe input[type="text"]:focus,
  .sml_subscribe input[type="email"]:focus {
    border-color: #ff5500;
    outline: none;
  }
  
  .sml_consent {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .sml_consentinput {
    transform: scale(1.2);
    margin-right: 8px;
  }
  
  .sml_submit {
    text-align: center;
  }
  
  .sml_submit button {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #ff5500;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .sml_submit button:hover {
    background-color: #e64600;
  }
  