

.form-container {
    background: transparent;
    color: white;
    max-width: 700px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--hColor);
  }
  
  .banner {
    width: 100%;
    margin-bottom: 20px;
  }
  
  h1 {
    color: var(--hColor );
  }
  
  .intro {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="date"],
  input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  input {
    background-color: transparent;
    color: white;
  }
  span {
    color: red;
    font-weight: bold;
  }
  
  button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2f80ed;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  