.inter-texts {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: justify;
  /*text-align-last: center;*/
  text-justify: inter-word;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  hyphens: auto;
}

.playfair-headers {
  font-family: "PlayFair", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  font-weight: bold;
}

.logo-img {
  width: 40px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.lead{
  font-size: 2em;
}

.fade-in-up {
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
}
.fade-in-up-delay {
  animation: fadeInUp 1.5s ease-in-out forwards;
  opacity: 0;
}
.fade-in-up-delay-2 {
  animation: fadeInUp 2s ease-in-out forwards;
  opacity: 0;
}


@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.subtext {
  text-align: center;
}

.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.form-label {
  font-weight: 500;
  color: #fff;
}

.form-control {
  background-color: #1e1e1e;
  border: 1px solid #444;
  color: #fff;
}

.form-control:focus {
  background-color: #2a2a2a;
  color: #fff;
  box-shadow: none;
  border-color: #666;
}

.alert {
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

