.container {
  max-width: 1200px;
  margin: 4vw auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}
h1,
h2 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
p {
  color: #4b5563;
}
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
}
.card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.icon {
  padding: 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.form-box {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  outline: none;
  transition: border 0.2s ease;
  font-size: 1rem;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
}
textarea {
  resize: none;
}
.btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.error-box {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Animations */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-left {
  animation: slide-in-left 0.8s ease-out;
}
.animate-right {
  animation: slide-in-right 0.8s ease-out 0.2s both;
}
