@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0px;
    padding: 0px;
    background: fixed center url('images/background.png');
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fafafa;
    width: 100%;
}

input {
    width: 100%;
}


a {
    color: #fcd36b;
}

footer {
    font-size: 12px;
}

footer a {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #f8f366;
}

main {
    flex-grow: 1;
    padding: 1rem;
    justify-content: center;
}

footer {
    padding-bottom: 0.5rem;
}

.box > .title {
    font-size: 26px;
    font-weight: bold;
}

.center {
    margin: 0 auto;
}

.margin-r1 {
    margin-right: 1rem;
}

.margin-b1 {
    margin-bottom: 1rem;
}

.align-v-text {
    vertical-align: text-bottom;
}

.uppercase {
    text-transform: uppercase;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

header {

}

input {
    padding: 14px;
    border-radius: 2px;
    border: solid 1px #000;
    background-color: #0a0a0a;
    color: #fafafa;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-container .button {
    flex: 1;
}

.button {
    border-radius: 27.5px;
    border: solid 1px #fff;
    background-color: transparent;
    text-transform: uppercase;
    padding: 13.5px 51px;
    font-family: Poppins;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fafafa;
    text-wrap: nowrap;
}

button[disabled] {
    opacity: 0.5;
}

a.button {
    text-decoration: none;
}

.hidden {
    display: none !important;
}

.button.primary {
    box-shadow: 0 5px 20px 0 #fe7766;
    background-image: radial-gradient(circle at 104% 0, #ff3362, #fbe76c 125%);
    border : none;
}

.button>.icon {
    display: inline-block;
    width: 31.9px;
    height: 23px;
    margin-left: 0.5rem;
    vertical-align: text-top;
}

.box {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 34px 42px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15.6px);
    backdrop-filter: blur(15.6px);
    background-image: linear-gradient(127deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    margin: 40px 0;
}

.line {
    height: 1px;
    background-color: #fff;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: initial;
    }
    .m-width-100 {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .desktop {
        display: initial;
    }
    .mobile {
        display: none;
    }
    .d-width-50 {
        width: 50%;
    }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 26px;
  aspect-ratio: 1;
  display:inline-grid;
  -webkit-mask: conic-gradient(from 15deg,#0000,#000);
  animation: l26 1s infinite steps(12);
}
.loader,
.loader:before,
.loader:after{
  background:
    radial-gradient(closest-side at 50% 12.5%,
     #f03355 96%,#0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%,
     #f03355 96%,#0000) 0 50%/80% 20% repeat-x;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {transform:rotate(1turn)}
}