.lk {
    margin: 36px auto 36px auto;
}

.lk_title {
    color: var(--title);
}

.lk_form {
    width: 100%;
    margin: 0 auto;
    max-width: 850px;

    background: var(--form);
    box-sizing: border-box;
    border: 2px solid var(--form-border);

    border-radius: 16px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.add-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-card_title {
    font-weight: 600;
    font-size: 28px;
    color: var(--title);
}

.add-card_subtitle {
    font-size: 12px;
    color: var(--title)
}

.dts-hr {
    margin: 0;
    border-top: 2px solid var(--line);
    opacity: 1;
}

.dts-tools {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dts-tools button {
    text-align: center;
    font-weight: 700;
    width: 100%;

    color: #000000;
}

/**/

.dts-input input, .dts-input select {
    width: 100%;
    outline: none;
    border-radius: 8px;
    border: 2px solid #252525FF;
    padding: 8px 16px;

    font-size: 14px;
}

@media (min-width: 480px) {
    .lk_form {
        padding: 25px;
        border-radius: 25px;
        gap: 25px;
    }

    /*.dts-input label {*/
    /*    font-size: 16px;*/
    /*}*/

    /*.dts-input-labeltext {*/
    /*    font-size: 16px;*/
    /*}*/

    /*.dts-input input {*/
    /*    font-size: 16px;*/
    /*}*/
}

@media (min-width: 576px) {
    .lk {
        margin: 50px auto 50px auto;
    }

    .dts-tools {
        flex-direction: row;
        justify-content: left;
    }

    .dts-tools button {
        width: fit-content;
    }

    .add-card .dts-tools button {
        width: 100%;
    }
}

@media (min-width: 768px) {

}
