#anasayfa {
    background: linear-gradient(0deg, #fff1fa 0%, #fff1fa 100%), #fff8e9;

    .hero {
        position: relative;
        z-index: 1;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 65%, 0% 100%);
        @media (max-width: 576px) {
            padding-top: 16px;
        }
        &-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 32px;
            align-items: center;
            padding-top: 240px;
            padding-bottom: 240px;
            @media (max-width: 768px) {
                grid-template-columns: 1fr;
                padding-top: 120px;
            }
            @media (max-width: 576px) {
                padding-top: 90px;
            }
            .hero-left {
                @media (max-width: 768px) {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }
                .hero-icon {
                    img {
                        width: 42px;
                        height: 42px;
                    }
                }
                .hero-heading {
                    color: $white;
                    font-size: 60px;
                    margin-top: 16px;
                    margin-bottom: 16px;
                    @media (max-width: 768px) {
                        font-size: 32px;
                    }
                }
                .hero-description {
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 18px;
                    line-height: 1.5;
                    font-weight: 300;
                }
            }
            .hero-right {
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                width: 100%;
                height: 100%;
                @media (max-width: 768px) {
                    margin-top: 100px;
                }
                .hero-image {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: absolute;
                    left: 50%;
                    bottom: -100px;
                    transform: translateX(-50%);
                    width: 100%;
                    height: 100%;

                    img {
                        max-width: 380px;
                        width: 100%;
                        height: auto;
                        @media (max-width: 768px) {
                            max-width: 250px;
                        }
                    }
                }
            }
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            img {
                width: 100%;
                height: 100%;
                display: block;
            }
        }
        // .hero-mask {
        //     position: absolute;
        //     left: 0;
        //     right: 0;
        //     bottom: 10%;
        //     width:200%;
        //     height: 200px;
        //     background-color: #F7FBFC;
        //     transform: rotate(-8.3deg);
        // }
    }

    .section-1 {
        padding-bottom: 100px;

        &-container {
            .section-1-heading {
                color: $primary;
                font-size: 48px;
                text-align: center;
                line-height: 1;
                @media (max-width: 576px) {
                    font-size: 32px;
                }
                span {
                    color: $dark;
                    display: block;
                }
            }
            .section-1-description {
                color: #91959e;
                font-size: 16px;
                font-weight: 300;
                margin-top: 16px;
                margin-bottom: 32px;
                text-align: center;
            }
            .section-1-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                align-items: center;
                grid-gap: 24px;
                @media (max-width: 992px) {
                    grid-template-columns: repeat(3, 1fr);
                }
                @media (max-width: 768px) {
                    grid-template-columns: repeat(2, 1fr);
                }
                @media (max-width: 576px) {
                    grid-template-columns: 1fr;
                }
                .grid-item {
                    background-color: $white;
                    padding: 20px;
                    border-radius: 24px;
                    position: relative;
                    .icon {
                        svg {
                            path {
                                fill: $primary;
                            }
                        }
                    }
                    .heading {
                        color: $dark;
                        font-size: 20px;
                        margin-top: 14px;
                        margin-bottom: 16px;
                        font-weight: 600;
                    }
                    .description {
                        color: rgba(145, 149, 158, 0.6);
                        max-width: 50%;
                        font-weight: 300;
                        line-height: 1.5;
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        width: 45%;
                        height: 35%;
                        right: 0;
                        bottom: 0px;
                        background-color: #fff1fa;
                        border-top-left-radius: 24px;
                    }
                }
            }
        }
    }

    .section-2 {
        background-color: #f7fbfc;
        padding-top: 120px;
        padding-bottom: 120px;
        &-container {
            .section-2-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                @media (max-width: 768px) {
                    flex-direction: column;
                    align-items: center;
                }
                .header-left {
                    display: flex;
                    align-items: center;
                    @media (max-width: 768px) {
                        margin-bottom: 32px;
                    }
                    .section-2-icon {
                        margin-right: 12px;
                        img {
                            width: 60px;
                            height: 60px;
                            display: block;
                        }
                    }
                    .section-2-heading {
                        color: $primary;
                        font-size: 13px;
                        font-weight: 600;
                    }
                    .section-2-description {
                        color: $dark;
                        font-size: 24px;
                        font-weight: 600;
                    }
                }
            }
            .services {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                grid-gap: 16px;
                margin-top: 32px;
                @media (max-width: 992px) {
                    grid-template-columns: repeat(4, 1fr);
                }
                @media (max-width: 768px) {
                    grid-template-columns: repeat(3, 1fr);
                }
                @media (max-width: 576px) {
                    grid-template-columns: repeat(1, 1fr);
                }
                .service-item {
                    background-color: $white;
                    display: flex;
                    align-items: center;
                    border-radius: 12px;
                    padding: 16px 12px;
                    border: 2px solid transparent;
                    &:hover {
                        border: 2px solid $primary;
                    }
                    .icon {
                        width: 26px;
                        height: 26px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-right: 12px;
                        img {
                            width: 26px;
                            height: 26px;
                            object-fit: contain;
                        }
                    }
                    .text {
                        color: $dark;
                        font-size: 14px;
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .section-3 {
        background-color: #f7fbfc;
        padding-top: 0px;
        padding-bottom: 120px;
        overflow: hidden;
        &-container {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            align-items: center;
            grid-gap: 32px;
            @media (max-width: 992px) {
                grid-template-columns: 1fr;
            }
            .section-3-left {
                .section-3-heading {
                    color: $primary;
                    font-size: 48px;
                    font-weight: 600;
                    margin-bottom: 20px;
                    @media (max-width: 576px) {
                        font-size: 32px;
                    }
                    span {
                        color: $dark;
                    }
                }
                .section-3-description p {
                    color: #91959e;
                    line-height: 1.8;
                    margin-bottom: 16px;
                    font-weight: 300;
                }
                .btn-primary {
                    display: inline-flex;
                    margin-top: 60px;
                }
            }
            .section-3-right {
                position: relative;
                border-radius: 42px;
                position: relative;
                width: 100%;
                height: 100%;
                @media (max-width: 992px) {
                    min-height: 400px;
                }
                .section-3-image {
                    position: absolute;
                    z-index: 1;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 85%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: end;
                    margin-left: 50px;
                    margin-bottom: 50px;

                    @media (max-width: 992px) {
                        margin-left: 0;
                        margin-bottom: 30px;
                        top: 0px;
                    }
                    @media (max-width: 576px) {
                        align-items: center;
                        margin-bottom: 0;
                    }
                    img {
                        width: 100%;
                        height: auto;
                    }
                    .circle-container {
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        z-index: -4;
                        .circle {
                            bottom: 26%;
                            position: absolute;
                            width: 120px;
                            height: 120px;
                            border-radius: 50%;
                            opacity: 0.7;
                            border: 3px solid $primary;
                            animation: pulse 6s ease-in-out;
                            transition: opacity 1s ease-in-out;
                            @media (max-width: 992px) {
                                bottom: unset;
                                top: 40%;
                            }
                            @media (max-width: 576px) {
                                top: 30%;
                            }
                        }
                    }
                    .facebook-animation {
                        position: absolute;
                        top: 40%;
                        left: 10%;
                        img {
                            width: 100%;
                            height: auto;
                            max-width: 150px;
                        }
                    }
                    .discord-animation {
                        position: absolute;
                        top: 20%;
                        right: 10%;
                        img {
                            width: 100%;
                            height: auto;
                            max-width: 132px;
                        }
                    }
                    .google-animation {
                        position: absolute;
                        top: 60%;
                        right: 30%;
                        img {
                            width: 100%;
                            height: auto;
                            max-width: 195px;
                        }
                    }
                    .rectangle {
                        position: absolute;
                        top: 40%;
                        left: 16px;
                        z-index: -1;
                        width: 96%;
                        height: 100%;
                        @media (max-width: 992px) {
                            display: none;
                        }
                        img {
                            width: 100%;
                            height: auto;
                        }
                    }
                }
                .section-3-bg {
                    background: linear-gradient(84deg, #db1c5d 3.25%, #ad2453 96.85%),
                        linear-gradient(110deg, #fbfdfe 1.03%, #f3f7fe 103.08%),
                        linear-gradient(0deg, #ebf5ff 0%, #ebf5ff 100%),
                        linear-gradient(110deg, #fbfdfe 1.03%, #f3f7fe 103.08%);
                    width: 80%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    right: 0;
                    overflow: hidden;
                    border-radius: 42px;
                    z-index: 0;
                    @media (max-width: 992px) {
                        width: 100%;
                    }
                }
            }
        }
    }

    .section-4 {
        overflow: hidden;
        background-image: url(../../public/images/section-4-bg.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 40px;
        margin-bottom: 30px;
        &-container {
            .section-4-grid {
                display: flex;
                align-items: center;
                @media (max-width: 992px) {
                    flex-direction: column;
                    justify-content: center;
                }
                .section-4-left {
                    width: 35%;
                    position: relative;
                    z-index: 1;
                    align-self: flex-end;
                    @media (max-width: 992px) {
                        align-self: unset;
                        width: 100%;
                        order: 2;
                    }
                    img {
                        width: 100%;
                        height: auto;
                        display: block;
                        margin-bottom: -20px;
                    }
                }
                .section-4-right {
                    width: 65%;
                    @media (max-width: 992px) {
                        width: 100%;
                        margin-top: 36px;
                        order: 1;
                    }
                    .section-4-heading {
                        color: $white;
                        font-size: 48px;
                        font-weight: 600;
                        @media (max-width: 768px) {
                            font-size: 32px;
                        }
                    }
                    .section-4-description {
                        color: rgba(255, 255, 255, 0.6);
                        font-weight: 300;
                        margin-top: 16px;
                        margin-bottom: 32px;
                    }
                    .testimonial-slider {
                        margin-bottom: 32px;
                        .splide__track {
                            overflow: visible;
                            .splide__list {
                                .splide__slide {
                                    .testimonials {
                                        padding: 20px;
                                        background-color: rgba(255, 255, 255, 0.1);
                                        border-radius: 16px;
                                        &-header {
                                            display: flex;
                                            align-items: center;
                                            .left {
                                                img {
                                                    background-color: $white;
                                                    border-radius: 50%;
                                                    width: 60px;
                                                    height: 60px;
                                                }
                                                margin-right: 12px;
                                            }
                                            .right {
                                                display: flex;
                                                flex-direction: column;
                                                align-items: flex-start;
                                                h6 {
                                                    color: $white;
                                                    font-size: 20px;
                                                    font-weight: 500;
                                                }
                                                .stars {
                                                    display: flex;
                                                    align-items: center;
                                                    img {
                                                        width: 18px;
                                                        height: 18px;
                                                        min-width: 18px;
                                                        min-height: 18px;
                                                        margin-right: 4px;
                                                    }

                                                    span {
                                                        display: block;
                                                        color: #fbb040;
                                                        font-size: 18px;
                                                        margin-left: 2px;
                                                    }
                                                }
                                            }
                                        }
                                        &-body {
                                            margin-top: 16px;
                                            p {
                                                color: $white;
                                                line-height: 1.3;
                                                font-weight: 300;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .section-5 {
        padding-top: 40px;
        padding-bottom: 80px;
        &-container {
            .section-5-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                @media (max-width: 768px) {
                    flex-direction: column;
                    align-items: center;
                }
                .header-left {
                    display: flex;
                    align-items: center;
                    @media (max-width: 768px) {
                        margin-bottom: 32px;
                    }
                    .section-5-icon {
                        margin-right: 12px;
                        img {
                            width: 60px;
                            height: 60px;
                            display: block;
                        }
                    }
                    .section-5-heading {
                        color: $primary;
                        font-size: 13px;
                        font-weight: 600;
                    }
                    .section-5-description {
                        color: $dark;
                        font-size: 24px;
                        font-weight: 600;
                    }
                }
            }
            .accordion-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-gap: 24px;
                width: 100%;
                margin-top: 36px;
                @media (max-width: 768px) {
                    grid-template-columns: 1fr;
                    grid-gap: 0;
                }
                .accordion {
                    background: $white;
                    border-radius: 12px;
                    margin-bottom: 16px;
                    overflow: hidden;
                    width: 100%;
                    position: relative;
                    &::after {
                        content: "";
                        position: absolute;
                        top: 25px;
                        left: 0;
                        width: 4px;
                        height: 40px;
                        background-color: $primary;
                        border-top-right-radius: 4px;
                        border-bottom-right-radius: 4px;
                    }
                    &-header {
                        padding: 21px 16px;
                        cursor: pointer;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        color: $dark;
                        font-weight: 500;
                        font-size: 18px;
                        .icon {
                            width: 48px;
                            height: 48px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background: rgba(225, 48, 108, 0.1);
                            border-radius: 10px;
                            min-width: 48px;
                            min-height: 48px;
                            margin-left: 8px;
                        }
                    }
                    &-content {
                        padding: 20px 16px;
                        padding-top: 0;
                        display: none;
                        color: rgba(145, 149, 158, 0.6);
                        font-weight: 300;
                        line-height: 1.3;
                    }
                    &.active {
                        .accordion-content {
                            display: block;
                        }
                        &::after {
                            top: 38%;
                        }
                    }
                }
            }
        }
    }

    .section-6 {
        background-color: #f7fbfc;
        padding-top: 100px;
        padding-bottom: 100px;
        &-container {
            .section-6-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                @media (max-width: 768px) {
                    flex-direction: column;
                    align-items: center;
                }
                .header-left {
                    display: flex;
                    align-items: center;
                    @media (max-width: 768px) {
                        margin-bottom: 32px;
                    }
                    .section-6-icon {
                        margin-right: 12px;
                        img {
                            width: 60px;
                            height: 60px;
                            display: block;
                        }
                    }
                    .section-6-heading {
                        color: $primary;
                        font-size: 13px;
                        font-weight: 600;
                    }
                    .section-6-description {
                        color: $dark;
                        font-size: 24px;
                        font-weight: 600;
                    }
                }
            }
            .blogs {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                grid-gap: 24px;
                margin-top: 32px;
                @media (max-width: 1200px) {
                    grid-template-columns: repeat(3, 1fr);
                }
                @media (max-width: 768px) {
                    grid-template-columns: repeat(2, 1fr);
                }
                @media (max-width: 576px) {
                    grid-template-columns: 1fr;
                }
                .blog-item {
                    display: flex;
                    flex-direction: column;
                    padding: 16px;
                    background-color: $white;
                    position: relative;
                    border-radius: 24px;

                    .blog-header {
                        width: 100%;
                        height: 100%;
                        img {
                            width: 100%;
                            height: 100%;
                            max-height: 250px;
                            object-fit: cover;
                            border-radius: 16px;
                        }
                    }
                    .blog-body {
                        margin-top: 12px;
                        max-width: 60%;
                        h6 {
                            color: $dark;
                            font-weight: 500;
                            font-size: 20px;
                            margin-bottom: 12px;
                        }
                        p {
                            color: rgba(145, 149, 158, 0.6);
                            font-weight: 300;
                            line-height: 1.3;
                        }
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        width: 35%;
                        height: 25%;
                        right: 0;
                        bottom: 0px;
                        background-color: #f7fbfc;
                        border-top-left-radius: 24px;
                    }
                }
            }
        }
    }
}

#blog {
    background-color: #f7fbfc;
    .blogs {
        margin-top: -250px;
        margin-bottom: 100px;
        &-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 24px;
            margin-top: 32px;
            @media (max-width: 1200px) {
                grid-template-columns: repeat(3, 1fr);
            }
            @media (max-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
            }
            @media (max-width: 576px) {
                grid-template-columns: 1fr;
            }
            .blog-item {
                display: flex;
                flex-direction: column;
                padding: 16px;
                background-color: $white;
                position: relative;
                border-radius: 24px;
                .blog-header {
                    width: 100%;
                    height: 100%;
                    img {
                        width: 100%;
                        height: 100%;
                        max-height: 250px;
                        object-fit: cover;
                        border-radius: 16px;
                    }
                }
                .blog-body {
                    margin-top: 12px;
                    max-width: 60%;
                    h6 {
                        color: $dark;
                        font-weight: 500;
                        font-size: 20px;
                        margin-bottom: 12px;
                    }
                    p {
                        color: rgba(145, 149, 158, 0.6);
                        font-weight: 300;
                        line-height: 1.3;
                    }
                }
                &:after {
                    content: "";
                    position: absolute;
                    width: 35%;
                    height: 25%;
                    right: 0;
                    bottom: 0px;
                    background-color: #f7fbfc;
                    border-top-left-radius: 24px;
                }
            }
        }
    }
}

#blog-detay {
    .blog-detail {
        margin-bottom: 100px;
        margin-top: -250px;
        position: relative;
        z-index: 1;
        &-container {
            .blog-content {
                margin-top: 60px;
                img {
                    width: 100%;
                    height: auto;
                    display: block;
                    border-radius: 24px;
                    margin-bottom: 16px;
                }
                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    color: $dark;
                    font-weight: 600;
                    margin-bottom: 24px;
                    margin-top: 24px;
                }
                h1 {
                    font-size: 52px;
                }
                h2 {
                    font-size: 42px;
                }
                h3 {
                    font-size: 32px;
                }
                h4 {
                    font-size: 24px;
                }
                h5 {
                    font-size: 18px;
                }
                h6 {
                    font-size: 16px;
                }
                p {
                    color: rgba(145, 149, 158, 0.6);
                    line-height: 1.5;
                    font-weight: 300;
                    margin-bottom: 16px;
                }

                ul {
                    list-style-type: disc;
                    padding-left: 24px;
                    li {
                        color: rgba(145, 149, 158, 0.6);
                        font-weight: 300;
                        margin-bottom: 16px;
                    }
                }
            }
        }
    }
}

#about-us {
    .about-us {
        margin-top: -300px;
        margin-bottom: 100px;

        &-container {
            .about-us-content {
                position: relative;
                z-index: 1;
                background-color: $white;
                border-radius: 16px;
                margin-top: 60px;
                padding: 24px;
                img {
                    width: 100%;
                    height: auto;
                    display: block;
                    border-radius: 24px;
                    margin-bottom: 16px;
                }
                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    color: $dark;
                    font-weight: 600;
                    margin-bottom: 24px;
                    margin-top: 24px;
                }
                h1 {
                    font-size: 52px;
                }
                h2 {
                    font-size: 42px;
                }
                h3 {
                    font-size: 32px;
                }
                h4 {
                    font-size: 24px;
                }
                h5 {
                    font-size: 18px;
                }
                h6 {
                    font-size: 16px;
                }
                p {
                    color: rgba(145, 149, 158, 0.6);
                    line-height: 1.5;
                    font-weight: 300;
                    margin-bottom: 16px;
                }

                ul {
                    list-style-type: disc;
                    padding-left: 24px;
                    li {
                        color: rgba(145, 149, 158, 0.6);
                        font-weight: 300;
                        margin-bottom: 16px;
                    }
                }
            }
        }
    }
}

#kayit-ol {
    .banner {
        &-container {
            min-height: 400px;
            padding-bottom: 250px;
            @media (max-width: 576px) {
                min-height: 375px;
            }
        }
    }
    .form {
        position: relative;
        z-index: 1;
        margin-top: -250px !important;
        margin-bottom: 100px !important;
        max-width: 580px;
        margin: 0 auto;
        background-color: $white;
        border-radius: 32px;
        padding: 70px 60px;
        @media (max-width: 576px) {
            width: 95%;
            padding: 32px 16px;
        }
        &-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            img {
                max-width: 270px;
                width: 100%;
                height: auto;
                display: block;
                @media (max-width: 576px) {
                    max-width: 200px;
                }
            }
            h3 {
                margin-top: 32px;
                margin-bottom: 12px;
                color: $dark;
                font-size: 30px;
                font-weight: 500;
                text-align: center;
                @media (max-width: 576px) {
                    font-size: 24px;
                }
            }
            p {
                color: rgba(145, 149, 158, 0.6);
                font-weight: 300;
                font-size: 18px;
                text-align: center;
            }
            form {
                width: 100%;
                margin-top: 24px;
                .form-group {
                    width: 100%;
                    position: relative;
                    margin-bottom: 16px;
                    .input-icon {
                        position: absolute;
                        top: 20px;
                        left: 20px;
                        svg {
                            path {
                                fill: #98a2b3;
                            }
                        }
                    }
                    .form-control {
                        width: 100%;
                        padding-left: 55px;
                    }
                }
                button {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    margin-top: 16px;
                    .icon {
                        margin-right: 12px;
                    }
                    &:hover {
                        .icon {
                            svg {
                                path {
                                    fill: $primary;
                                }
                            }
                        }
                    }
                }
            }
            .form-info {
                display: block;
                text-align: left;
                width: 100%;
                margin-top: 24px;
                a {
                    color: $primary;
                    font-weight: 500;
                }
            }
        }
    }
}

#giris {
    .banner {
        &-container {
            min-height: 400px;
            padding-bottom: 250px;
            @media (max-width: 576px) {
                min-height: 375px;
            }
        }
    }
    .form {
        position: relative;
        z-index: 1;
        margin-top: -250px !important;
        margin-bottom: 100px !important;
        max-width: 580px;
        margin: 0 auto;
        background-color: $white;
        border-radius: 32px;
        padding: 70px 60px;
        @media (max-width: 576px) {
            width: 95%;
            padding: 32px 16px;
        }
        &-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            img {
                max-width: 270px;
                width: 100%;
                height: auto;
                display: block;
                @media (max-width: 576px) {
                    max-width: 200px;
                }
            }
            h3 {
                margin-top: 32px;
                margin-bottom: 12px;
                color: $dark;
                font-size: 30px;
                font-weight: 500;
                text-align: center;
                @media (max-width: 576px) {
                    font-size: 24px;
                }
            }
            p {
                color: rgba(145, 149, 158, 0.6);
                font-weight: 300;
                font-size: 18px;
                text-align: center;
            }
            form {
                width: 100%;
                margin-top: 24px;
                .form-group {
                    width: 100%;
                    position: relative;
                    margin-bottom: 16px;
                    .input-icon {
                        position: absolute;
                        top: 20px;
                        left: 20px;
                        svg {
                            path {
                                fill: #98a2b3;
                            }
                        }
                    }
                    .form-control {
                        width: 100%;
                        padding-left: 55px;
                    }
                }
                .form-settings {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 24px;
                    margin-top: 24px;
                    @media (max-width: 576px) {
                        flex-direction: column;
                        gap: 8px;
                    }
                    p {
                        font-size: 16px;
                        color: rgba(145, 149, 158, 0.6);
                        a {
                            color: $primary;
                            font-weight: 500;
                        }
                    }
                    .reset-password {
                        color: rgba(145, 149, 158, 0.6) !important;
                    }
                }
                button {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    margin-top: 24px;
                    .icon {
                        margin-right: 12px;
                    }
                    &:hover {
                        .icon {
                            svg {
                                path {
                                    fill: $primary;
                                }
                            }
                        }
                    }
                }
            }
            .or {
                margin-top: 40px;
                margin-bottom: 40px;
                position: relative;
                width: 100%;
                span {
                    background-color: $white;
                    display: inline-block;
                    position: relative;
                    z-index: 1;
                    padding: 0px 12px;
                }
                &::after {
                    content: "";
                    background-color: rgba(145, 149, 158, 0.6);
                    height: 1px;
                    width: 100%;
                    left: 0;
                    top: 13px;
                    position: absolute;
                    z-index: 0;
                }
            }
            .social-logins {
                a {
                    background-color: #f9f9f9;
                    display: flex;
                    align-items: center;
                    color: $dark;
                    margin-bottom: 16px;
                    .icon {
                        margin-right: 16px;
                        img {
                            width: 28px;
                            height: 28px;
                        }
                    }
                }
            }
        }
    }
}
