body {
    font-family: Arial, sans-serif;
    background: #FAF1E6;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 10px;
    
    flex-direction: column;

    color: #171d22;;
}

.return_newsletter {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.return_newsletter h1 {
  margin-left: 120px;
}

.fa {
  text-decoration: none;
  color: #1e2225;
  transition: 0.2s linear;
  
  -webkit-tap-highlight-color: transparent;
}

.fa:hover {
  transform: scale(1.2);
}

h1, h3 {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 30px;
}

h3 {
    font-weight: 500;
}
  
  form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    background: rgb(194, 233, 207);
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: 4px 6px 8px rgba(15, 15, 15, 0.3);
    width: 320px;
  }
  
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: rgb(41, 40, 40);
    align-self: flex-start;
    margin-left: 5px;
  }
  
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    width: 90%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  }
  
  .error {
    color: red;
    font-size: 13px;
    display: none;
    margin-bottom: 10px;
  }
  
  .success {
    color: green;
    font-size: 14px;
    display: none;
    margin-top: 10px;
    text-align: center;
  }
  
  button {
    background: rgb(94, 160, 116);
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
    font-size: 15px;
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    margin-top: 20px;
    border: 1px solid black;

  }
  
  button:hover {
    background: #1c8f55;
    transition: background 0.3s ease;
  }

  button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  @media ((max-width: 400px)) {
    .return_newsletter h1 {
      margin-left: 100px;
    }
  }
  
  