body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(../dist/lawn.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Makes the background static */
  margin: 0 0 8vh;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.card .card-body {
  padding: 2rem;
}
.card .card-title {
  color: #FA824C;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.text-white .card {
  color: #FFFFFF;
}

.guest-rsvp {
  background-color: white;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.guest-rsvp:hover {
  border-color: #004E98;
}
.guest-rsvp h5 {
  color: #FA824C;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
}
.form-control:focus {
  border-color: #FA824C;
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.form-check-input:checked {
  background-color: #FA824C;
  border-color: #FA824C;
}

.btn {
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background-color: #FA824C;
  border-color: #FA824C;
}
.btn.btn-primary:hover {
  background-color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
  border-color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
  transform: translateY(-1px);
}
.btn.btn-outline-secondary {
  border-color: #dee2e6;
  color: #6c757d;
}
.btn.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  border-color: #FA824C;
  color: #FA824C;
}

.alert {
  border-radius: 8px;
  border: none;
}
.alert.alert-danger {
  background-color: hsl(11.5714285714, 70%, 100.7843137255%);
  color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
}

.field-error {
  display: block;
  margin-top: 0.25rem;
}

.footer {
  position: fixed;
  background-color: white;
  border-top: 1px solid #dee2e6;
  margin-top: 3rem;
  padding: 1rem 0;
  width: 100%;
  height: 8vh;
  bottom: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .card .card-body {
    padding: 1.5rem;
  }
  .guest-rsvp {
    margin-bottom: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  animation: fadeIn 0.5s ease-out;
}

.btn.loading {
  position: relative;
  color: transparent;
}
.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/*# sourceMappingURL=wedding.css.map */
