* {
  margin: 0;
  padding: 0;
}
body {
  background-color: rgb(4, 4, 37);
}
label {
  color: white;
}
.dob {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.container {
  max-width: 300px;
  background: green;
  width: 100%;
  height: 80%;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: rgb(3, 3, 66);
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.664);
  cursor: pointer;
}
.container:hover {
  border: 1px solid rgb(1, 104, 52);
}
form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  max-height: 500px;
  width: 250px;
}
input {
  padding: 5px;
  margin: 4px;
  border-radius: 7px;
  border: 1px solid green;
  outline: none;
  font-size: medium;
  caret-color: rgb(2, 2, 61);
}
input:hover {
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.315);
}
.container h1 {
  color: beige;
  text-align: center;
  font-size: large;
  margin-bottom: 10px;
  padding: 8px;
  border-bottom: 1px solid white;
}
