* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(images/tuslider3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background: rgb(0, 212, 255);
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 1) 0%,
    rgba(9, 9, 121, 1) 77%
  );
  /* min-height: 100vh; */
  /* background-color: cyan; */
}

div.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: min(500px, 90%);
  /* border: 1px solid black; */
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 5px;
  margin: 30px 0;
}

form input,
form select {
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 5px;
}

.input-field {
  display: flex;
  flex-direction: column;
}

form button {
  padding: 15px 20px;
  width: 120px;
  border: none;
  color: white;
  background-color: rgba(9, 9, 121, 1);
  border-radius: 5px;
  cursor: pointer;
}

form textarea {
  max-width: 100%;
  min-width: 100%;
}

.header {
  margin-bottom: 20px;
}
