body{
    background-color: #0D0914 !important;
    /* overflow: hidden; */
}
#navbar{
    margin: 0;
    width: 100%;
    height: 80px;
    /* padding: 10px 111px; */
    background-color: #0D0914;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 20;
}

#app-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#app-logo > span{
    color: #FAFAFA;
    font-weight: 600;
    font-size: 20px;
    line-height: 19.2px;
}

#app-logo > img{
    width: 32px;
    height: 32px;
    border-radius: 24px;
    padding-right: 0.5px;
}

#buttons > button {
    position: relative;
    display: inline-block; /* Ensure it works with padding and content */
    height: 30px;
    padding: 8px 14px;
    outline: none;
    border: none; /* Remove default border */
    border-radius: 27px;
    background-color: #1E1E2E; /* Button background color */
    color: #FAFAFA; /* Text color */
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 1; /* Ensure it is above pseudo-elements */
    transition: all 0.3s ease;
    text-decoration: none;
}

#buttons > button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 27px; 
    padding: 0.5px; 
    background: linear-gradient(180deg, #A9A8CD 0%, #141524 100%); /* Gradient border */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
}

.colour{
    background: linear-gradient(90deg, rgba(138,43,226,1) -35%, rgba(48,157,251,1) 100%);
    -webkit-background-clip: text;
    background-clip: #FAFAFA;
    color: transparent;
}

.vector{
    height: 48px;
    width: 48px;
    position: absolute;
    top: -24%;
    right: 32%;
}

#section{
    padding-block: 50px;
    position:relative;
}

#section > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
    max-height: 1800px;
}

.video-container{
    /* width: 560px; */
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    background-color: #0F0B19;
    position: relative;
}

.video-container > img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thumbnail{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.thumbnail > .rectangle{
    height: 100%;
    width: 16px;
    background-color: #782EFA;
}

.thumbnail > img{
    width: 393px;
    height: 315px;
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: color-dodge;
}

.thumbnail > span{
    font-family: Urbanist;
    color: #FAFAFA;
    margin-left: 30px;
    margin-bottom: 15px;
}

.heading{
    color: #FAFAFA;
}

.sub-text{
    color: #A4A5B6 !important;
}

.step {
    position: relative;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    flex: 1;
}

.step .circle {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #55515a;
    color: white;
    margin: 0 auto;
    font-family: Urbanist;
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.step .line {
    position: absolute;
    top: 40px;
    left: -50%;
    width: 100%;
    height: 3px;
    background-color: rgba(250, 250, 250, 0.05);
    z-index: -1;
}


.step.active .circle {
    background-color: #6f42c1;
}

.step.active .line {
    background-color: #6f42c1;
}

.step .step-text {
    margin-top: 10px;
    /* min-height: 80px; */
    font-size: 28px;
    font-weight: 500;
    color: #FAFAFA;
}

.step .step-desc {
    font-size: 20px;
    color: #A4A5B6;
}

.register-card {
    position: relative;
    background: linear-gradient(110.43deg, rgba(250, 250, 250, 0.05) 0%, rgba(77, 69, 97, 0.05) 50%, rgba(250, 250, 250, 0.05) 100%);
    padding: 32px 48px;
    border: none;
    border-radius: 30px; 
    /* border-image-source: linear-gradient(249.57deg, #A9A8CD 0%, #141524 50%, #A9A8CD 100%); */
    display: inline-block; /* Ensure it works with padding and content */
    z-index: 1; /* Ensure it is above pseudo-elements */
    transition: all 0.3s ease;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px; 
    background: linear-gradient(249.57deg, #A9A8CD 0%, #141524 50%, #A9A8CD 100%);
    padding: 1px; 
     /* Gradient border */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
}

.register-card > p{
    font-family: Urbanist;
    font-weight: 500;
    text-align: center;
    color: #A4A5B6 !important;
}

.register-card > p > span{
    font-family: Urbanist;
    font-weight: 700;
    color: #FAFAFA;
}

.form-input{
    padding: 13px !important;
    border: 1px solid rgba(250,250,250,0.25) ! important;
    border-radius: 10px !important;
    background-color: #0D0914 !important;
    font-size: 20px;
}

.input-group {
    display: flex; /* Ensures input and span are aligned in a row */
    align-items: stretch; /* Makes all children match the height of the group */
    border: 1px solid rgba(250, 250, 250, 0.25) !important; /* Single border for the group */
    border-radius: 10px !important; /* Rounded corners for the group */
    background-color: #0D0914 !important; /* Group background */
    overflow: hidden; /* Ensures no child overflows the rounded corners */
}

.input-group input {
    flex: 1; /* Allows the input to take up the remaining space */
    border: none; /* Removes individual border */
    padding: 13px !important;
    background-color: transparent !important; /* Matches parent background */
    color: #fff; /* Adjust text color */
}

.input-group input:focus {
    outline: none; /* Removes focus outline */
}

.input-group span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px; /* Padding for span */
    background-color: transparent; /* Matches input background */
    border-left: 1px solid rgba(250, 250, 250, 0.25); /* Divider between input and span */
    color: #fff; /* Adjust icon color */
    cursor: pointer;
    border: none;
}

.input-group span:hover {
    background-color: #1a1a1a !important; /* Slightly lighter hover background */
}

.form-label{
    font-family: Urbanist;
    font-weight: 500;
    line-height: 21.6px;
    color: #FAFAFA !important;
}

.form-btn{
    border-radius: 27px !important;
    height: 52px !important;
    padding: 8px 24px !important;
    font-family: Urbanist !important;
    font-weight: 600 !important;
    line-height: 26.4px;
}

    /* .register-bottom > span{
        font-family: Urbanist;
        font-size: 20px;
        font-weight: 500 !important;
        line-height: 24px;
    } */

#steps{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
    padding-bottom: 2.5rem ;
    flex-direction: column;
}

#footer{
    background-color: #160F23;
    width: 100%;
    padding: 32px 111px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
}
#footer-register{
    background-color: #160F23;
    width: 100%;
    padding: 32px 111px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    /* position: fixed; */
    /* bottom: 0; */
}

#footer > span{
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: center;
}
#footer-register > span{
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: center;
}

.step-description{
    display: none;
}

.qr-code{
    width: 390px;
    height: 390px;
    padding: 24px;
}

.next-btn{
    width: 390px !important;
    padding: 8px 24px !important;
    border-radius: 27px !important;
    background-color: #782EFA !important;
    font-family: Urbanist !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 26.4px;
    color: #FAFAFA !important;
}

.register-card > .text-left{
    text-align: left !important;
}

.form-head{
    color: #FAFAFA !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-text-fill-color: #FAFAFA !important;
    -webkit-box-shadow: 0 0 0px 1000px #212529 inset; /* Match your background */
    transition: background-color 5000s ease-in-out 0s;
}

@media(max-width:1440px){
    .vector {
        height: 48px;
        width: 48px;
        position: absolute;
        top: -24%;
        right: 29%;
    }
}

@media(max-width:1024px){
    .vector {
        height: 48px;
        width: 48px;
        position: absolute;
        top: -24%;
        right: 22%;
    }
}

@media(max-width:768px){
    .vector {
        height: 48px;
        width: 48px;
        position: absolute;
        top: -24%;
        right: 17%;
    }
}

@media(max-width:425px){
    .vector {
        height: 48px;
        width: 48px;
        position: absolute;
        top: -24%;
        right: 0%;
    }
}

@media(max-width:320px){
    .vector {
        height: 32px;
        width: 32px;
        position: absolute;
        top: -15%;
        right: -3%;
    }
}



@media(max-width:768px){
    .step .circle{
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step .line{
        top: 20px;
    }

    .step .step-text{
        font-size: 15px;
    }

    .step .step-desc{
        font-size: 12px;
    }

    .register-card{
        padding-inline: 20px;
    }

}

@media(max-width:425px){
    #footer{
        padding: 20px 40px;
    }

    #footer > span{
        font-size: 18px;

    }
    #footer-register{
        padding: 20px 40px;
    }

    #footer-register > span{
        font-size: 18px;

    }

    .register-card{
        padding-block: 25px;
    }

    .form-input{
        padding: 12px;
    }

    .input-group input{
        padding: 12px;
    }

    .step .step-desc{
        display: none;
    }

    .step-description{
        display: block;
        text-align: center;
        color: #A4A5B6;
    }

    #navbar{
        padding-inline: 30px !important;
    }

    .qr-code{
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        padding: 24px;
    }

    .next-btn{
        width: 90% !important;
        padding: auto;
    }
}