form {
    background-image: linear-gradient(rgba(7, 78, 106, 0.908), rgba(12, 116, 137, 0.908)), url("images/computer-dark.jpg");
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border: solid 1px #FFFFF0;
    box-sizing: border-box;
    color: white;
    border-radius: 10px;
  }

  form img {
    width: 70px;
    height: 70px;
  }

  .form-header {
    text-align: center;
    position: relative;
  }

  .form-header img {
    position: absolute;
    top: 0;
  }

  .form-header img:first-child {
    left: 0;
  }

  .form-header img:last-child {
    right: 0;
  }

  .form-header h1 {
    color: #FFFFF0;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    color:#fff;
  }

  .form-group input,
  .form-group select {
    width: calc(100% - 20px);
    padding: 10px;
    border: solid 1px #FFFFF0;
    background-color: white;
    color: black;
  }

  .form-group input::placeholder {
    color: #888;
  }

  .form-group input[type="radio"],
  .form-group input[type="checkbox"] {
    width: auto;
  }

  .form-group legend {
    margin-bottom: 5px;
  }

  .form-footer {
    text-align: center;
  }

  .form-footer p {
    font-size: 90%;
  }

  .form-footer input {
    margin: 5px;
  }

  @media (max-width: 600px) {
    .form-header img {
      display: none;
    }
  }

  label {
    display: block;
    margin-bottom: 8px;
    margin-right: 50px;
    font-weight: bold;
    color:#fff;
  }

  input[type="date"] {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }

  input[type="date"]:focus {
    border-color: #007BFF;
    outline: none;
  }

  input[type="submit"] {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    background-color: #1184e9;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  input[type="submit"]:hover {
    background-color: #0056b3;
  }

  input[type="reset"] {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #878d96;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  input[type="reset"]:hover {
    background-color: #0056b3;
  }
