body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #222222;
}

/* Validation styles */
.valid {
  border-color: #10b981 !important;
}

.invalid {
  border-color: #ef4444 !important;
}

.requirement-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.requirement-item.valid {
  color: #10b981;
}

.requirement-item span {
  margin-left: 0.25rem;
}

.requirements-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.requirements-container.show {
  max-height: 200px;
  margin-top: 0.5rem;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-checkbox:checked {
  background-color: #111111;
  border-color: #111111;
}

.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fec601;
  border-color: #111111;
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 198, 1, 0.2);
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  z-index: 1;
  overflow: hidden;
}

.language-dropdown-content a {
  color: #222222;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.language-dropdown-content a:hover {
  background-color: #f8f9fa;
}

.language-dropdown-content a.active {
  background-color: #111111;
  color: white;
}

.language-dropdown.show .language-dropdown-content {
  display: block;
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  border-radius: 2px;
}

/* Navigation styles */
.top-nav {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 226, 226, 0.5);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #111111;
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: #fec601;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.show {
  max-height: 400px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #fec601;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}
.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #fec601;
  }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
