* {
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url(image/bg.jpeg);
  background-size: contain;
  font-family: cursive;
}

.container {
  height: 50vh;
  width: 50vh;
  padding: 2rem;
  background-color: #fff;
  border-radius: 20px;
  color: white;
  background-color: black;
  border: solid;
  border-color: red;
}

form input,
select,
button {
  width: 100%;
  outline: none;
  border: none;
}

.amount {
  margin-top: 1rem;
}

form input {
  height: 3rem;
  border: 1px solid lightgray;
  border-radius: 10px;
  margin-top: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  border: solid;
  border-color: rgb(29, 27, 27);
}

.dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.select-container img {
  max-width: 2rem;
}

form i {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.select-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  border-radius: 2rem;
  padding: 0 1rem 0 1rem;
  margin-top: 0.75rem;
  border: dotted;
}

.select-container select {
  font-size: 1rem;
  color: aliceblue;
  background-color: black;
}

.msg {
  margin: 2rem 0 2rem 0;
}
.button {
  background-color: black;
  color: rgb(243, 234, 234);
  height: 40px;
  border-radius: 10px;
  border: solid;
  border-color: red;
}
.button:hover {
  color: rgb(233, 28, 28);
  border-color: white;
}
