* {
  margin: 0;
  padding: 0;
}
body {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
/* body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4e4ba;
} */
/* .container{
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 45vh;
  width: 45vh;
  
} */
.container {
  background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  text-align: center;
  backdrop-filter: blur(10px); /* Adds a blurred effect */
  width: 300px;
}
form {
  margin: 2rem 0 1rem 0;
}
.amount {
  font-size: 1.1rem;
  color: #e0e0e0;
}
form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.75rem;
}
form input {
  border: 1px solid lightgray;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.5rem;
  margin-top: 1rem;
}
.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  /* background-color: none; */
}
.dropdown i {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.select_container img {
  max-width: 2rem;
}
.select_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border-radius: 0.5rem;
  border: 1px solid lightgray;
  margin-top: 10px;
}
.select_container select {
  font-size: 1rem;
  width: auto;
  background-color: transparent;
}
.msg {
  margin: 2rem 0 2rem 0;
}
form button {
  height: 3rem;
  /* background-color: #af4d98; */
  background-color: #3a7bd5;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
}
