@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #fffde6;
  --primary-btn-color: #1e71b7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Satoshi;
  src: url(../fonts/Satoshi-Regular.otf);
}

@font-face {
  font-family: Satoshi-Bold;
  src: url(../fonts/Satoshi-Bold.otf);
}

body {
  background-color: var(--primary-color) !important;
  font-family: Satoshi, Arial, Helvetica, sans-serif !important;
}

.error {
  color: red;
}

.step {
  display: none;
  animation: fade 0.4s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.step.active {
  display: block !important;
}

.main-content-header-title {
  font-family: Satoshi-Bold, Arial, Helvetica, sans-serif;
}

/* Images */
.header-img {
  max-width: 350px;
  height: auto;
}

.header-img-right {
  max-width: 210px;
}


.pu-fest-form-button {
  padding: 1.5rem 5rem;
  margin: 1rem;
  font-size: 1.8rem;
  color: var(--primary-color);
  background-color: var(--primary-btn-color);
  border: none;
  border-radius: 50px;
  margin-top: 5rem;
}

.home-container-footer {
  position: relative;
  padding: 114px 0;
  /* extra space for stacked images */
  overflow: hidden;
}

/* Common image styles */
.footer-img {
  position: absolute;
  bottom: 0;
  /* stick to footer bottom */
  left: 50%;
  /* center horizontally */
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-img-2 {
  position: absolute;
  bottom: 0;
  /* stick to footer bottom */
  left: 50%;
  /* center horizontally */
  transform: translateX(-50%);
  width: 100%;
  height: 124px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Image 1 (Behind) */
.footer-img-1 {
  z-index: 1;
  background-image: url("../img/home-footer_asset_1.svg");
}

/* Image 2 (Front) */
.footer-img-2 {
  z-index: 2;
  background-image: url("../img/home-footer_asset_2.svg");
}

.custom-input-group {
  width: 100%;
}

.custom-input-group .form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  font-family: "Roboto", sans-serif;
}

.custom-input {
  height: 56px;
  border-radius: 999px !important;
  /* pill shape */
  border: 1.5px solid #cfcfcf;
  padding: 0 24px !important;
  font-size: 16px;
  box-shadow: none;
  font-family: "Roboto", sans-serif;
}

.custom-input::placeholder {
  color: #9a9a9a;
}

.custom-input,
.custom-input:focus,
.custom-input:focus-visible,
.custom-input:active {
  outline: none !important;
  box-shadow: none !important;
}

.custom-input:focus,
.custom-input:focus-visible {
  border-color: #fada0f !important;
  box-shadow: 0 0 0 2px rgba(250, 218, 15, 0.35) !important;
}

.pu-fest-submit-button {
  width: 100%;
  /* allow col-6 to control width */
  padding: 0.75rem 1rem;
  /* vertical padding only */
  font-size: 1.3rem;
  border-radius: 50px;
  color: var(--primary-color);
  background-color: var(--primary-btn-color);
  border: none;
}

/* Wrapper to merge input + button */
.otp-merged-group {
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid #cfcfcf;
  background: #fff;
}

/* Remove individual borders */
.otp-merged-group .custom-input {
  border: none !important;
  border-radius: 999px 0 0 999px !important;
  height: 56px;
  flex: 1;
}

/* Button merged on right */
.otp-merged-group .otp-btn {
  width: auto;
  height: 56px;
  padding: 0 28px;
  background-color: #FADA0F !important;
  font-size: 16px;
  color: black;
  font-weight: bold;
  border-radius: 0 999px 999px 0;
  white-space: nowrap;
}

/* Focus state for whole pill */
.otp-merged-group:focus-within {
  border-color: #fada0f;
  box-shadow: 0 0 0 2px rgba(250, 218, 15, 0.35);
}