body,html {
    font-family: "Poppins", sans-serif;
    font-weight: auto;
    font-style: normal;
}

:root {
    --primary-color: rgb(85, 66, 246);
    --secondary-color: #f44336;
    --background-color: rgb(14,14,22);
    --text-color: rgb(163, 162, 181);
}

body {
    background-color: var(--background-color);
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
    cursor: pointer;
}

#heroSection {
    padding-top: 128px;
    min-height: 60vh;
    background-image: url('../images/grid.png');
    background-size: cover;
    background-origin: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.navbar {
    position: absolute;
    left: 50%; /* Center horizontally */
    transform: translate(-50%, 10%); /* Adjust for the element's own dimensions */
    width: 90%;
    color: white !important;
    padding: 10px 20px;
    background: rgba( 14, 14, 22, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.hero-title {
    font-size: 48px;
    line-height: 70px;
    font-weight: 700;
    color: white;
}

.desc-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-color);
}

.purple-button {
    color: white;
    background-color: var(--primary-color);
    padding: 12px 24px;
    border: none; /* Remove the default border */
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 10px;
    position: relative;
}

.white-button {
    color: black;
    background-color: white;
    padding: 12px 24px;
    border: none; /* Remove the default border */
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    border-radius: 10px;
    position: relative;
    overflow: hidden; /* Ensure the animation stays within the button */
}

.white-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent; /* Start with a transparent border */
    border-radius: 10px;
    box-sizing: border-box;
    animation: snake-border 2s linear infinite;
}

@keyframes snake-border {
    0% {
        border-color: purple transparent transparent transparent;
    }
    25% {
        border-color: transparent purple transparent transparent;
    }
    50% {
        border-color: transparent transparent purple transparent;
    }
    75% {
        border-color: transparent transparent transparent purple;
    }
    100% {
        border-color: purple transparent transparent transparent;
    }
}

.ts-card {
    background: #151622;
    border-radius: 24px;
    padding: 32px;
}

.ts-card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: white;
}

.ts-card-subtitle {
    font-size: 14px;
    color: #A3A2B5;
    line-height: 20px;
    font-weight: 400;
}

.ts-input {
    background-color: #1B1A26;
    border: 1px solid #373550;
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    color: white;
    font-size: 14px!important;
}

::placeholder {
    color: #53536F;
}

.login-alternative {
    background-color: #151622;
    font-size: 16px;
    padding: 4px 8px;
    position: absolute;
    left: 50%;
    top:0;
    color: white;
    transform: translate(-50%, -50%);
}

.ts-link {
    color: #5542F6;
}

.ts-link:hover {
    color: white;
    cursor: pointer;
}

.alert{
    border-radius: 12px!important;
    font-size: 14px!important;
}


