
.bfs-form {
  max-width: 500px;
  background: #fff;
  border: 2px solid #e60000;
  padding: 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}
.bfs-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.bfs-form input[type="text"],
.bfs-form input[type="file"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.submit-btn {
  background-color: #e60000;
  color: white;
  padding: 10px 16px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.bfs-message {
  border: 2px solid #e60000;
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  max-width: 500px;
}
.bfs-message.notice {
  background: #fff7e6;
  border-color: orange;
}
.bfs-message.denied {
  background: #ffe6e6;
  border-color: red;
}
