input[type="file"] {
  display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f2f2f2;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
  }

  .custom-file-upload:hover {
    background-color: #e6e6e6;
  }

  .custom-file-upload i {
    margin-right: 8px;
  }

  /* Styles for the upload button */
  .upload-btn {
    background-color: #008CBA;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .upload-btn:hover {
    background-color: #005B79;
  }

  /* Styles for the form container */
  .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
  }

  /* Styles for the footer */
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px;
  }

  footer a {
    color: #fff;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .upload-btn {
    margin-top: 16px;
  }

   /* Styles for mobile */
   @media only screen and (max-width: 600px) {
    .form-container {
      margin-top: 50px;
  }
}