* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
header {
  width: 100vw;
  min-height: 100vh;
  background: #2f3e56;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  max-width: 800px;
  min-height: 500px;
  color: white;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1.5rem;
}
.left {
  flex-basis: 50%;
}
.right {
  flex-basis: 50%;
}
form {
  padding: 1rem;
}

h3 {
  margin-top: 1rem;
  color: white;
}

form input[type="text"] {
  outline-color: white;
  border: none;
  border-radius: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  padding: 0.5rem 0.7rem;
  margin: 0.5rem 0;
  outline: none;
}

#zip {
  display: flex;
  margin-top: 0.5rem;
}
#zip select {
  color: white;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 0.7rem;
}

select option {
  background-color: #2f3e56;
  color: white;
}
#zip input[type="number"] {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 0.7rem;
  margin-left: 5px;
}
#zip p {
  margin-bottom: 0.5rem;
}
input {
  color: white !important;
}
input::placeholder {
  color: white;
}
input[type="submit"] {
  border-radius: 1rem;
  width: 100%;
  padding: 0.7rem 1.5rem;
  background-color: #2f3e56;
  color: white;
  border: none;
  outline: none;
  margin-top: 1rem;
  cursor: pointer;
  transition: 0.3s all ease;
}

input[type="submit"]:hover {
  transform: scale(1.02);
  background: #184690;
}

p {
  color: white;
}
label {
  color: white;
}
form p {
  margin-top: 0.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
form img {
  margin-bottom: 0.5rem;
}
.txt {
  text-align: center;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  color: white !important;
}
