* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4e4ba;
  font-family: sans-serif;
}


.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 45vh;
  width: 370px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.boxAmount {
  margin: 2rem 0 1rem 0;
}

.boxAmount input {
  width: 100%;
  border: 1px solid lightgray;
  outline: none;
  border-radius: 0.75rem;
  height: 3rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.box {
  display: flex;
  flex-direction: column;
}

.fa-arrow-right-arrow-left {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #555;
}

.from, .to {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dropdown label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.dropdown select {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid lightgray;
  outline: none;
  font-size: 1rem;
  background: #fff;
}

.Fimage img, .Timage img {
  max-width: 6rem;
  border: 1px solid #eee;
  padding: 3.5px;
  border-radius: 4px;
}
.msg {
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
}

#GERbtn {
  width: 100%;
  height: 3rem;
  background-color: #af4d98;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
#Rbtn {
  width: 50%;
  height: 1.5rem;
  background-color: #af4d98;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.8;
  transform: scale(1.02);
}