/* Light */
@font-face {
  font-family: "lufga-light";
  src: url("/fonts/Lufga-Light.eot"); /* IE9 Compat */
  src: url("/fonts/Lufga-Light.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Lufga-Light.woff2") format("woff2"),
    url("/fonts/Lufga-Light.woff") format("woff"),
    url("/fonts/Lufga-Light.ttf") format("truetype");
  font-weight: 300; /* Light */
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: "lufga-regular";
  src: url("/fonts/Lufga-Regular.eot");
  src: url("/fonts/Lufga-Regular.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Lufga-Regular.woff2") format("woff2"),
    url("/fonts/Lufga-Regular.woff") format("woff"),
    url("/fonts/Lufga-Regular.ttf") format("truetype");
  font-weight: 400; /* Regular */
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: "lufga-semibold";
  src: url("/fonts/Lufga-SemiBold.eot");
  src: url("/fonts/Lufga-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Lufga-SemiBold.woff2") format("woff2"),
    url("/fonts/Lufga-SemiBold.woff") format("woff"),
    url("/fonts/Lufga-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "lufga-bold";
  src: url("/fonts/Lufga-Bold.eot");
  src: url("/fonts/Lufga-Bold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Lufga-Bold.woff2") format("woff2"),
    url("/fonts/Lufga-Bold.woff") format("woff"),
    url("/fonts/Lufga-Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
  font-style: normal;
}

:root {
  --bs-body-font-family: "lufga-regular", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --color-gray-500: "#CECECE";
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background-image: url("../images/bg.png");
    background-blend-mode: overlay;
  background-size: cover;
    background-position: center;
  min-height: 100svh;
  color: white;
  background-color: #222222;
}

p {
  font-family: "lufga-regular";
  font-size: 14px;
}

.bg-opacity {
  backdrop-filter: blur(40px);
  background-color: rgba(35, 35, 35, 0.2);
  border-radius: 20px;
  padding: 3.5rem;
  margin-top: 3rem;
}

.text-white {
  color: white;
}
.text-gray-500 {
  color: #cecece;
}

.text-gray-500:hover {
  color: #cecece;
}

.title-box {
  font-size: 30px;
  font-weight: 400;
  font-family: "lufga-light", sans-serif;
  letter-spacing: 0.4px;
}

a:hover {
  color: currentColor;
}

.underline-only-hover {
  text-decoration: none;
}

.underline-only-hover:hover {
  text-decoration: underline;
}

.input-group {
  height: 48px;
  min-width: 255px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  display: flex;
}
.w-full {
  width: 100%;
}
.w-max-355 {
  max-width: 355px;
}

.w-max-450 {
  max-width: 450px;
}

.w-max-750 {
  max-width: 750px;
}

.input-group-prefix {
  background: #31343b;
  flex: 0 0 150px;
  height: 48px;
  border-radius: 50px 0 0 50px !important;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 16px;
  font-size: 12px;
}

.input-group-text {
  background-color: transparent;
  border: none;
  padding: 0 18px;
  flex: 0 0 25px;
}

.input-group-field {
  height: 48px;
  flex: 0 0 calc(100% - 60px);
  background: transparent;
  border: none;
  color: #fff;
}

.input-group-field option {
  background-color: #ffffff;
  color: #333333;
  border: none;
}

.input-group-field:-webkit-autofill,
.input-group-field:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.input-group-field[data-autocompleted] {
  background-color: transparent !important;
}

.input-group-field.flex-1 {
  flex: 0 0 calc(100% - 150px);
  padding-left: 16px;
}

.input-group-field:focus {
  outline: none;
}

.login .text-danger {
  font-size: 11px;
  font-family: "lufga-semibold";
  color: #ef4f4d !important;
  margin: 5px 0 16px;
  display: block;
}

.button-primary {
  background-color: #fff;
  border-radius: 50px;
  height: 48px;
  color: #000;
  transition: 0.3s all ease;
  min-width: 192px;
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  background-color: #202020;
  color: #fff;
}

.button-primary:disabled {
  cursor: not-allowed;
  background: #ccc;
}

.buttonDefault {
  height: 54px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.buttonDefault--yellow {
  background-color: #d7ff01;
  color: #000;
  border: 0;
}

.buttonDefaultLabel {
  position: relative;
  z-index: 10;
}

.buttonDefault--yellow .buttonDefaultBgHover {
  background-color: #c1e501;
}

.buttonDefaultBgHover {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: 0.5s all ease-out;
}

.buttonDefaultIconBlock {
  width: 42px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  overflow: hidden;
  background-color: #0000001a;
  transition: 0.3s all ease-out;
}

.buttonDefaultIcon {
  position: absolute;
  transition: 0.5s all ease-out;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.buttonDefaultIconToHover {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: 0.5s all ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttonDefault:hover .buttonDefaultBgHover,
.buttonDefault:hover .buttonDefaultIconToHover {
  transform: translateX(0);
}

.buttonDefault:hover .buttonDefaultIconBlock {
  background-color: #d7ff01;
}

.buttonDefault:hover .buttonDefaultIcon {
  transform: translate(36px, -50%);
}

.inputDefaultGroup {
  background-color: #ffffff33;
  backdrop-filter: blur(20px);
  border: 0;
  border-radius: 12px;
  align-items: center;
  padding-left: 8px;
  margin-bottom: 0;
  position: relative;
  display: flex;
}

.inputDefaultIcon {
  width: 31px;
  height: 31px;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
}

.inputDefault {
  padding-left: 8px;
  padding-right: 8px;
  flex: 1;
}

.language-selector {
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  display: flex;
  align-items: center;
}

.language-selector a {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  border-radius: 50px;
}

.language-selector a.active {
  background-color: #ffffff;
}

.grecaptcha-badge {
  bottom: 80px !important;
}

.loader-overlay {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
