* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://imgs.search.brave.com/a3mYNz30Z-cF_7c-5STMuCx5m7uSU_GmIYmHwWo7L8M/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9pbWcu/ZnJlZXBpay5jb20v/ZnJlZS12ZWN0b3Iv/Y29sbGVjdGlvbi1k/aWdpdGFsLW1vbmV5/LXN5bWJvbC13b3Js/ZC1tYXAtYmFja2dy/b3VuZC1kZXNpZ25f/MTAxNy01ODg2MS5q/cGc_c2VtdD1haXNf/aHlicmlkJnc9NzQw"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: blur(3px); 
  z-index: -2; 
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: -1; 
}
.container {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  min-height: 35vh;
  width: 50vh;
  box-shadow: 20px 20px 5px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
}
.heading{
  width: 100%;
  height: 5rem;
  color: rgb(219, 238, 255);
  text-shadow: 0 8px 25px rgba(0,0,0,1);
  font-size: 1.38rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
form {
  margin: 2rem 0 1rem 0;
}
form select,button,input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.75rem;
}
form select option {
  background-color: #333; 
  color: white; 
}
form input{
    background: rgba(255, 255, 255, 0.1);  
    color: white;
    border: 2px solid lightgray;
    font-size: 1rem;
    height: 3rem;
    padding-left: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.amount {
  position: relative;   
  display: flex;
  width: 100%;
}
input::placeholder{
  color: white;
}
.dropdown{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.dropdown i{
  font-size: 1.25rem;
  margin-top: 1rem;
}
.select-container img{
  max-width: 3rem;
}
.select-container{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  border: none;
}
.select-container select{
  font-size: 1.25rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  width: auto;
}
.msg{
  width: 100%;
  margin: 2rem 0rem 2rem 0rem;
  color: rgb(219, 238, 255);
  font-size: 1.25rem;
  text-shadow: 0 8px 25px rgba(0,0,0,1);
  align-content: center;
  font-weight: bolder;
  display: flex;
  justify-content: center;
}
form button{
  height: 3rem;
  background:linear-gradient(135deg, rgb(73, 3, 194), rgb(37, 126, 189));
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.fixed-text {
  position: absolute;
  left: 10px;             
  top: 50%;               
  transform: translateY(-50%);
  pointer-events: none;   
  color: white;            
  font-size: 1rem;
}
