* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: rgb(173, 128, 190);
  font-family: Arial, sans-serif;
}

.container {
  background-color: azure;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 45vh;
  width: 50vh;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}

form {
  margin-top: 1.5rem;
}

.amount p,
.from p,
.to p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input {
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 0.75rem;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.5rem;
  outline: none;
}

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

.select-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid lightgray;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  background-color: white;
  height: 3rem;
}

.select-container img {
  width: 30px;
  height: 20px;
}

.select-container select {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  appearance: none;
}

.fa-arrow-right-arrow-left {
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  margin-top: 1.5rem;
}

.msg {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
  color: #333;
}

button {
  width: 100%;
  margin-top: 2rem;
  background-color: rgb(113, 57, 146);
  color: white;
  font-size: 1rem;
  height: 3rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #5e328a;
  transform: scale(1.02);
}
