* {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("Curr.jpg") no-repeat center center fixed;
  background-size: cover;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

h2 {
  text-align: center;
  font-size: 1.7rem;
}

.container {
  background-color: rgba(238, 240, 242, 0.5);
  padding: 2rem;
  border-radius: 1.5rem;
  min-height: 45vh;
  width: 40vh;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}

#em {
  margin-bottom: 1rem;
}

form {
  margin: 2rem 0 1rem 0;
}

form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.5rem;
}

form input {
  border: 2px solid lightgray;
  background-color: #eef0f2;
  font-size: 1rem;
  height: 2rem;
  padding-left: 0.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s ease;
}

form input:focus {
  border-color: #0d21a1;
  box-shadow: 0 0 0.5rem rgba(13, 33, 161, 0.5);
  transform: translateY(-2px);
}

.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.dropdown i {
  font-size: 2rem;
  margin-top: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.dropdown i:hover {
  color: #0d21a1;
}

.rotate {
  animation: spinOnce 0.4s ease-in-out;
}

.select-container img {
  max-width: 2.5rem;
}

.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border-radius: 0.5rem;
  border: 2px solid lightgray;
  background-color: #eef0f2;
}

.select-container select {
  font-size: 0.85rem;
  background-color: #eef0f2;
  width: auto;
  animation: bounceIn 0.6s ease;
}

.select-container select:focus {
  border-color: #0d21a1;
  box-shadow: 0 0 0.5rem rgba(13, 33, 161, 0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.msg {
  margin: 2rem 0 2rem 0;
}

form button {
  height: 3rem;
  background-color: #0d21a1;
  color: #eef0f2;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

form button:hover {
  background-color: #1e3a8a;
  transform: scale(1.05);
  box-shadow: 0 0 1.5rem rgba(13, 33, 161, 0.6);
}

form button:active {
  animation: pulse 0.4s ease;
}

@keyframes spinOnce {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes zoomBg {
  0% {
    background-size: 100rem;
  }
  100% {
    background-size: 105rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
