#fw-section-custom-html-55f3f0b7-8af5-4efa-96af-486cf6f45d86 {

body {
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-family: sans-serif;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: transparent;
    padding-top: 60px; 

  }
  .questions {
    background-color: black;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .questions input[type="text"],
  .questions input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 1em;
  }
  
  .questions input::placeholder {
    color: #999;
  }
  
  .buttons {
    border-radius: 10px;
    font-size: 1em;
    padding: 10px 20px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    align-self: center;
  }
  
  .buttons:hover {
    background-color: red;
    color: white;
  }
}