@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-color: #000;
    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: #cf82fa;
}

footer {
    font-size: 12px;
}

footer img {
    margin-bottom: 6px;
}

footer > span {
    display: block;
    margin-bottom: 4px;
}

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: #cf82fa;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 480px;
}

footer {
    padding-bottom: 0.5rem;
}

.logo {
    width: 100%;
    max-width: 400px;
}

.tagline {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.25rem 0 2.5rem;
    line-height: 1.25;
}

.tagline a {
    color: #fafafa;
    text-decoration: none;
    border-bottom: 2px solid rgba(207, 130, 250, 0.5);
    transition: border-color 150ms ease-in-out;
}

.tagline a:hover {
    border-color: #cf82fa;
}

.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;
}

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 27.5px;
    border: solid 1px #fff;
    background-color: transparent;
    text-transform: uppercase;
    padding: 11px 20px;
    font-family: Poppins;
    font-size: 16px;
    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 rgba(160, 60, 230, 0.45);
    background-image: radial-gradient(circle at 104% 0, #7c1fd6, #cf82fa 125%);
    border: none;
    padding: 12px 42px;
    font-size: 18px;
}

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

.box {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 22px 30px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15.6px);
    backdrop-filter: blur(15.6px);
    background-image: linear-gradient(127deg, rgba(80, 30, 130, 0.35), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(207, 130, 250, 0.25);
    margin: 44px 0 24px;
}

.connect {
    display: flex;
    flex-direction: column;
    margin: 32px 0 24px;
}

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

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: initial;
    }
    .m-width-100 {
        width: 100%;
    }
    main {
        padding: 1rem;
    }
    .tagline {
        font-size: 22px;
        margin: 0.5rem 0 0.75rem;
    }
    .box {
        padding: 14px 18px;
        margin: 12px 0 10px;
    }
    .connect {
        margin: 8px 0 6px;
    }
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    .button-container .button {
        flex: none;
        width: 70%;
        padding: 8px 16px;
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .desktop {
        display: initial;
    }
    .mobile {
        display: none;
    }
    .d-width-50 {
        width: 50%;
    }
    main {
        max-width: 680px;
    }
    .logo {
        max-width: 640px;
    }
    .tagline {
        font-size: 34px;
    }
}

@media (max-width: 767px) and (min-height: 700px),
       (min-width: 1000px) and (max-height: 850px),
       (min-width: 768px) and (max-width: 830px) {
    footer {
        font-size: 15px;
        padding-bottom: 1.25rem;
    }
    footer a {
        font-size: 15px;
    }
    footer img {
        margin-bottom: 10px;
    }
    footer > span {
        margin-bottom: 8px;
    }
}

/* 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%,
     #cf82fa 96%,#0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%,
     #cf82fa 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)}
}
