/* Styling for the form and email input */
#emailForm {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #emailForm label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  #emailForm input {
    font-size: 1em;
    padding: 10px;
    border-radius: 25px;  /* Rounded corners */
    border: 2px solid #FFD700; /* Yellow border */
    background-color: rgba(0, 0, 0, 0.7); /* Dark background */
    color: #ffffff;
    width: 300px; /* Control the width */
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
  }
  
  #emailForm input:focus {
    outline: none;
    border-color: #FFB300; /* Slightly lighter yellow on focus */
  }
  
  /* Placeholder text styling */
  #emailForm input::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Faded grey color */
  }
  
  /* Button styling */
  #emailForm button {
    font-size: 1em;
    padding: 10px 20px;
    background-color: #FFD700; /* Yellow button */
    border: none;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  #emailForm button:hover {
    background-color: #FFB300; /* Button hover effect */
  }