body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    height: 100%;
  }
  
  .form-container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #000000;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);

  }
  
  del {
    color: red;
    font-weight: bold;
}

  form {
    display: flex;
    flex-direction: column;
  }
  
  h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
  }
  
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  textarea,
  select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  input[type=text]:focus,
  input[type=email]:focus,
  input[type=tel]:focus,
  input[type=date]:focus,
  textarea:focus,
  select:focus {
    border-color: #901800;
    outline: none;
  }
  
  input[type=email] {
    border-right: none;
  }
  
  fieldset {
    border: none;
    margin-bottom: 15px;
  }
  
  legend {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  label {
    margin-right: 15px;
  }
  
  button {
    background-color: #007BFF;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 1s ease;
  }
  
  button:hover {
    background-color: #930000;
  }
  
#fear {
    background-color: #000000;  
    color: #ff1010;  
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
  }
  
  input[type=text], 
  input[type=email], 
  input[type=tel], 
  input[type=date], 
  textarea, select, button {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  footer {
    text-align: center;
    color:rgb(107, 1, 1)
  }

#back {
    display: block;
    text-align: center; 
    font-size: 12px;
}

#back a {
  color: blue;
  text-decoration: none;
  transition: color 1s ease;
}

#back a:visited {
  color: blue; 
}

#back a:hover {
  color: red;
  text-decoration: line-through;
}


