* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding: 50px;
  font-family: 'Prompt', sans-serif;
  /* border: 1px solid blue; */
}

a {
  color: #00B7FF;
}

input::placeholder {
  color: blue;
  font-style: italic;
  opacity: 1;
  /* Required for Firefox */
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  height: 3rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  /* Modern rounded corners */
  font: inherit;
  /* Matches site-wide typography */
  transition: border-color 0.3s ease;
}

input[type="text"]:focus {
  border-color: #007bff;
  outline: none;
  /* Only if a visible custom focus style is provided */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="date"] {
  margin: 10px;
  padding: 10px;
  height: 3rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  /* Modern rounded corners */
  /* font-size: 2rem; */
  /* font: inherit; */
  /* Matches site-wide typography */
  transition: border-color 0.3s ease;
}


input[type="file"] {
  width: 100%;
  margin: 10px;
  padding: 10px;
  height: 3rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  /* Modern rounded corners */
  font: inherit;
  /* Matches site-wide typography */
  transition: border-color 0.3s ease;
}

input[type="submit"],
button[type="submit"] {
  background-color: #04AA6D;
  /* Green background */
  border: none;
  color: white;
  /* White text */
  padding: 15px 32px;
  /* Some padding */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  /* Pointer cursor on hover */
  border-radius: 8px;
  /* Rounded corners */
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #008CBA;
  /* A different color on hover */
  /* You can add a transition effect for a smoother change */
  transition: background-color 0.3s ease;
}


/* Styling the main select box */
select {
  background-color: #f2f2f2;
  color: #333;
  margin: 20px;
  padding: 10px;
  height: 3rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font: inherit;
  /* Removes default system styling in some browsers (e.g., the arrow icon) */
  appearance: none;
}

/* Styling the individual options in the dropdown list */
option {
  background-color: #fff;
  color: #333;
  padding: 10px;
  width: 20%;
}

.container {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  /* border: 1px solid red; */
  /* Example with black color */
}

.form {
  width: 100%;
  /* border: 1px solid blue; */
}

.form-group {
  margin: auto;
}

.datepicker-input {
  font-size: 1rem;
  cursor: pointer;
}

.upload-container {
  margin-top: 10px;
  /* border: 1px solid blue; */
}

.file-input {
  width: 100%;
}

.upload-label {
  padding: 1rem;
}