* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@font-face {
    font-family: 'customFontLight';
    src: url('/assets/css/fonts/weblysleekuisl_Light.woff2') format('woff2'),
    url('/assets/css/fonts/weblysleekuisl_Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.search::-webkit-scrollbar {
    display: none;
}

/* Custom Bold Font */
@font-face {
    font-family: 'customFontBold';
    src: url('/assets/css/fonts/DejaVuSans.woff2') format('woff2'),
    url('/assets/css/fonts/DejaVuSans.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.font-customLight {
    font-family: 'customFontLight';
    font-weight: 300;
}

.font-customBold {
    font-family: 'customFontBold';
    font-weight: 500;
}

.text-neutral-200 {
    color: #939db8;
}

.text-neutral-300 {
    color: #646e87 !important;
}

.bg-button-gradient {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: linear-gradient(353deg, #5b63d3 17.51%, #7c87f7 183.08%);
    box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.25) inset;
}

.text-gradient {
    background: linear-gradient(353deg, #5b63d3 17.51%, #7c87f7 183.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 1px 3px rgba(255, 255, 255, 0.25);
}


.cta-button {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(353deg, #5b63d3 17.51%, #7c87f7 183.08%);
    box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.25) inset;
}

.rounded {
    border-radius: 8px !important;
}

.auth-form-control {
    border-radius: 8px;
    padding: 28px;
    max-width: 420px;
}

.auth-label {
    display: block;
    cursor: pointer;
    padding-bottom: 10px;
    padding-left: 6px;
    font-size: 12px;
    line-height: var(--tw-leading, var(--text-sm--line-height));
    color: #939db8;
}


.auth-btn-primary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.form-input {
    border-radius: 8px;
    border: 1px solid #202331;
    background-color:
            color-mix(in oklab, #727DA1 10%, transparent);
    --tw-backdrop-blur: blur(var(--blur-sm));
    height: 40px;
    width: 100%;
    padding: 8px 14px;
    font-size: 14px;
    color: #C9D3EE;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #7c87f7;
}

.form-input::placeholder {
    color: #4e576e;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #131520 inset !important;
    -webkit-text-fill-color: #C9D3EE !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #C9D3EE;
}

.text-brand-primary-100 {
    color: #7c87f7;
}

.text-brand-primary-100:hover {
    color: #98a4f7;
}

@keyframes slide-bottom-scale {
    0% {
        transform: translateY(-50px) scale(0.98);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.slide-bottom {
    animation: slide-bottom-scale 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}




.footerWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #000;
}

.footerContainer {
    height: auto;
    width: 100%;
    max-width: 1920px;
    background-color: #000;
    margin: 0 auto;
    display: flex;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 80px 30px 0 30px;
}

.footerItemsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 76%;
}


.footerLogoContainer {
    display: flex;
    justify-content: end;
    /*margin-right: 13%;*/
}

.footerLogoContainer a {
    text-decoration: none;
}

.footerLogoContainer img {
    display: block;
    width: 40px;
    height: auto;
    transition: transform 4s ease-in-out;
}

.footerItems {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    width: 70%;
}

.footerItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
}

.footerItem h2 {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0;
    white-space: nowrap;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
}

.footerItem ul {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.footerItem ul li a {
    position: relative;
    color: #C9D3EE;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footerItem ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footerItem ul li a:hover {
    color: white;
}

.footerItem ul li a:hover::after {
    width: 100%;
}

.footerDescr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 76%;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.termsOfUse {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footerDescr .termsOfUse a,
.footerDescr p {
    color: #898989;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footerDescrSl {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
}

.footerDescrSl .socialLink {
    margin-right: 1rem;
}

.socialLink svg {
    width: 18px;
    height: 18px;
}

.footerDescrSl .socialLink svg path {
    fill: #888;
    width: auto;
    height: auto;
    transition: fill 0.3s ease;
}

.footerDescrSl .socialLink:hover svg path {
    fill: #ffffff;
}

.footerDescr .termsOfUse a:hover {
    color: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .footerItemsContainer {
        flex-direction: column;
        gap: 20px;
    }
    .footerLogoContainer{
        width: 100% !important;
    }
}


@media (max-width: 1024px) {
    .footer {
        padding: 60px 20px 0 20px;
    }

    /*.footerLogoContainer {*/
    /*    justify-content: center;*/
    /*    margin: 0 auto 30px auto;*/
    /*}*/

    .footerLogoContainer {
        margin-bottom: 60px;
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footerItems {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }

    .footerItem {
        width: 45%;
    }

    .footerDescr {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footerDescrSl {
        width: 100%;
        justify-content: flex-start;
    }

    .termsOfUse {
        justify-content: flex-start;
    }
}

@media (max-width: 610px) {
    .footer {
        padding: 40px 15px 0 15px;
    }

    .footerLogoContainer img {
        width: 160px;
    }

    .footerItem {
        width: 100%;
    }

    .footerItem h2 {
        font-size: 0.875rem;
    }

    .footerItem ul li a {
        font-size: 0.9rem;
    }

    .footerDescr {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .footerDescr p {
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
    }

    .termsOfUse {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
    }

    .footerDescrSl {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .socialLink svg {
        width: 16px;
        height: 16px;
    }
}

