.footer_separator {
    height: 1px;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-dark);
    border-width: 0 20px;
}


footer {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    background: var(--color-dark);
    color: var(--color-font-light);
    color-scheme: dark;
}

footer > div {
    display: flex;
    justify-content: space-between;
}

footer > .frame_a {
    align-items: flex-start;
    margin-right: 30px;
}

footer > .frame_a > .frame_a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer > .frame_a > .frame_a > span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}

footer > .frame_a > .frame_a > .frame {
    display: flex;
    justify-content: space-between;
    height: 34px;
    border: none;
    border-bottom: 1px solid var(--color-border-input);
}

footer > .frame_a > .frame_a > .frame > input {
    border: none;
    padding: 10px 0;
    flex-grow: 1;
}

footer > .frame_a > .frame_a > .frame > input::placeholder {
    opacity: 0.4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.42px;
}

footer > .frame_a > .frame_a > .frame > input:focus {
    outline: none;
}

footer > .frame_a > .frame_a > .frame:has(input:focus) {
    border-color: var(--color-light);
}

footer > .frame_a > .frame_a > .frame > button {
    cursor: pointer;
    appearance: none;
    border: none;
    padding-inline: unset;
    padding-block: unset;
    background: none;
    display: flex;
    align-items: center;
}

footer > .frame_a > .frame_a > .frame > input:not(:focus) ~ button > :nth-child(2),
footer > .frame_a > .frame_a > .frame > input:focus ~ button > :nth-child(1) {
    display: none;
}

footer > .frame_a > .frame_b {
    display: flex;
    gap: 85px;
}

footer > .frame_a > .frame_b > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

footer > .frame_a > .frame_b > div > * {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 80%;
    letter-spacing: -0.42px;
    text-decoration-line: none;
}
footer > .frame_a > .frame_b > .underline > :not(:first-child) {
    border-bottom: 1px solid var(--color-font-light);
    padding-bottom: 2px;
}
footer > .frame_a > .frame_b > .selectable > :not(:first-child) {
    user-select: text;
}
footer > .frame_a > .frame_b > div > :first-child {
    opacity: 0.4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    letter-spacing: -0.48px;
}

footer > .frame_b {
    align-items: flex-end;
}

footer > .frame_b > .logo {
    display: flex;
    width: 160px;
    height: 57px;
    justify-content: center;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

footer > .frame_b > a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.6px;
    text-align: right;
    text-decoration: underline;
}