* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background-image: url('./worldmap.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  animation: fadeIn 1s ease-in;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.container {
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.8s ease-in-out;
  transition: all 0.3s ease;
  color: #fff;
}


h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

form {
  margin-top: 1.5rem;
}

form p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.amount input {
  border: 1px solid #ccc;
  font-size: 1rem;
  height: 3rem;
  width: 100%;
  padding-left: 0.75rem;
  border-radius: 0.75rem;
  transition: 0.3s;
}

.amount input:focus {
  border-color: #af4d98;
  box-shadow: 0 0 0 3px rgba(175, 77, 152, 0.2);
}

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

.dropdown i {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #ffffff;
  animation: rotateY 2s infinite linear;
}

.select-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  padding: 0.5rem;
  gap: 0.5rem;
  transition: box-shadow 0.3s;
  background: #fafafa;
}

.select-container:hover {
  box-shadow: 0 0 10px rgba(175, 77, 152, 0.2);
}

.select-container img {
  max-width: 2rem;
}

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

.msg {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.1rem;
  color: #000000;
  background-color: #fff;
  border-radius: 1rem;
  height: 3rem;
  align-content: center;
  font-weight: 500;
  animation: fadeIn 1s ease-in;
}

form button {
  height: 3rem;
  width: 100%;
  background-color: #fcb92a;
  color: rgb(0, 0, 0);
  font-size: 1.1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

form button:hover {
  background-color: #943f82;
  transform: scale(1.03);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateY {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
