input, textarea {
    background-color: #ebebfa !important;
}

.api-content {
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
}

.api-hero {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 64px;
    padding-bottom: 80px;
    max-width: 1350px;
    margin: 120px auto 0;
    align-items: center;
}

.api-hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.api-hero-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 105%;
    color: #09090A;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.api-hero-list {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #09090A;

    li {
        font-weight: 400;
        color: #1C1C1F;
        margin-top: 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 8px;

        span {
            font-weight: 400;
            font-size: 18px;
            line-height: 140%;
            color: #1C1C1F;
        }
    }
}

.api-form-section {
    position: relative;
    z-index: 20;
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.api-form-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 105%;
    color: #09090A;
}

.api-form-container {
    width: 520px;
}

.api-form-field-user_info-wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-direction: column;
}

.api-link-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 400px;
}

.api-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;

    p {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: #09090A;
    }

    span {
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        color: rgba(25, 25, 31, 0.55);
    }
}

@media screen and (max-width: 1380px){
    .bg-hero {
        display: none;
    }

    .api-hero {
        gap: 40px;
        padding-bottom: 80px;
        max-width: 1200px;
        margin: 200px auto 0;
        align-items: center;
    }
}


@media screen and (max-width: 1220px){
    .api-hero {
        flex-direction: column;
    }

    .api-hero-title {
        margin-top: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .api-hero-list {
        max-width: 700px;
        margin: auto;
    }

    .api-link-wrapper {
        margin: 0 auto;
    }

    .api-hero-text-block {
        gap: 30px;
    }
}

@media screen and (max-width: 862px){
    .api-hero {
        padding-left: 16px;
        padding-right: 16px;
        margin: 125px auto 0;
        padding-bottom: 10px;
    }

    .api-hero-title {
        font-size: 40px;
    }

    .api-form-section {
        padding: 20px 0px;
    }

}

@media screen and (max-width: 648px){
    .api-link-wrapper {
        margin: 0;
    }

    .api-form-container {
        width: 100%;
    }

    .api-form-title {
        font-size: 28px;
    }
}

