* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
  overflow-x: hidden;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html,
body {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  font-family: "Marcellus", serif;
}

main {
  height: 100%;
}

.top-section {
  height: 100%;
}
.headline {
  width: 50%;
  height: 2px;
  background-color: darkorange;
}
.img-container {
  background-image: url("../images/f3port-home.png");
  background-size: cover; /* Maintain height, adjust width */
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw; /* Full viewport width */
  height: 100%; /* Original image height */
  /* min-height: 100vh !important;  */
  color: white;
}
@media screen and (min-width: 1100px) {
  img-container {
    background-image: url("../images/1200x600.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    min-height: 100vh !important;
    color: white;
  }
}

.img-container > * {
  position: relative;
  z-index: 2;
}
.input-field {
  outline: none;
  padding: 5px;
  background-color: black;
  color: white;
  border-bottom: 1px solid whitesmoke !important;
  border-width: 1px;
  border: 0;
}
.input-field-area {
  outline: none;
  padding: 5px;
  background-color: black;
  color: white;
  border-bottom: 1px solid whitesmoke !important;
  border-width: 1px;
}

.loader {
  border: 4px solid rgba(243, 163, 4, 0.801);
  border-left-color: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
/* Loader Overlay Styles */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 12, 12, 0.8); /* Semi-transparent background */
  backdrop-filter: blur(1px); /* Blurring the background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* High z-index to cover the entire page */
}
.submit-btn:disabled {
  cursor: not-allowed !important;
}

/* Hide the loader by default */
.loader-overlay.hidden {
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.custom-swal {
  background-color: white;
  color: black !important;
  padding: 5px;
  font-size: 13px;
  box-shadow: gray;
  border-radius: 30px;
}
.custom-swal .swal-text {
  color: black;
}
.error-swal {
  background-color: white;
  color: black !important;
  padding: 5px;
  font-size: 13px;
  box-shadow: gray;
  border-radius: 30px;
}
.error-swal .swal-text {
  color: black !important;
}
.error-swal .swal-title {
  color: black !important;
}
.sweet-confirm-btn {
  background-color: #d4bf27;
}
.sweet-confirm-btn:hover {
  background-color: #e9d356 !important;
}
/* @media screen and (min-width: 200px) and (max-width: 600px) {
  .logo {
    width: 15rem;
    height: 10rem;
  }
}
.logo {
  height: 20%;
  width: 10%;
} */
