* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: whitesmoke;
}
body {
  background-image: url(https://img.freepik.com/free-vector/digital-money-transfer-technology-background_1017-17454.jpg?t=st=1753939750~exp=1753943350~hmac=2eaf8be5317b2a87abf928115c3094ea4b47c8ea65ecd0b021fc4bf8451e2df7&w=1380);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}
main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  min-height: 60%;
  width: 40%;
  border-radius: 1rem;
  padding: 2em;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  color: #222;
  z-index: 1;
}
form input,
.btn {
  height: 3rem;
  width: 100%;
  border: none;
  border-radius: 1rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  margin-top: 2rem;
  outline: none;
}
form input{
  background: rgba(255,255,255,0.2);
  color: white;
  font-weight: 600;
}
::placeholder{
  color: whitesmoke;
}
.dropdowns {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
i{
  font-size: xx-large;
  margin-top: 1.1rem;
  color: black;
}
.select-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
select {
  width: 100%;
  height: 3rem;
  padding: 0 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  outline: none;
  background: rgba(255,255,255,0.2);
  border: none;
}
select option{
   color: black;
}
.flag-img {
  width: 70px;
  height: auto;
}
.from-country, .to-country {
  font-size: 1rem;
  color: #10253f;
  padding-top: .2em;
  text-align: center;
  min-height: 1.4em;
  font-weight: 500;
}
.msg {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.35rem;
  color: #fff;
}
.btnContainer {
  margin-top: 2rem;
}
.btn {
  background-color: #e68bbe;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.25s;
}
.btn:hover {
  opacity: 0.8;
}
.btn:active {
  background-color: #22223b;
}
