* {
  box-sizing: border-box;
  font-family: sans-serif;
}

input[type="text"],
input[type="file"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  background-color: #fff;
}

input[type="datetime-local"]{
  width: fit-content;
  display: block;
}

form select {
  margin-bottom: 20px;
  width: max-content;
  display: block;
  cursor: pointer;
}
form select option {
  cursor: pointer;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-size: 14px;
  margin-top: 20px;
}

input[type="submit"] {
  background-color: #04aa6d;
  color: white;
  padding: 12px 20px;
  border: none;
  width: 70%;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 20px auto;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}


input[type=search] {
  height: 40px;
  width: 70%;
  background-color: #e3e3e3;
  border-radius: 10px;
  margin: 10px auto;
  padding: 0px 10px;
  display: block;
  border: none;
  outline: none;
}

input[type=search]:focus {
  outline: 1px solid #e5e5e5;
}

fieldset{
  padding: 20px;
}