.order_form_title {
    margin: 0;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: max-content;
    font-size: 32px;
    font-weight: 300;
    padding: var( --padding-block);
    padding-top: 50px;
}

.repair_padding {
    border-top: 1px solid var(--main-color);
    padding-top: 10px;
    margin: 0;
}

.public_order_form {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: var(--padding-block);
    margin: 20px 0;
}

@media only screen and (max-width: 860px) {
    .public_order_form {
        flex-direction: column;
    }
}

.start_order_form {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-inline-end: 20px;
}

.end_order_form {
    width: 50%;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 860px) {
    .start_order_form, .end_order_form {
        width: 100%;
        margin-inline-end: 0;
    }
}

.form_label {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 300;
    margin-bottom: 5px;
}

.form_input {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 20px;
    background-color: var(--footer-bg);
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    outline: none;
    appearance: none;
    color: var(--main-color);
}

.form_input:invalid {
    color: red;
}

.form_textarea {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 20px;
    background-color: var(--footer-bg);
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    outline: none;
    appearance: none;
    min-height: 200px;
    resize: none;
    color: var(--main-color);
}

.order_btn_div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

@media only screen and (max-width: 860px) {
    .order_btn_div {
        justify-content: center;
    }
}

.order_form_btn {
    border: 2px solid var(--main-color);
    appearance: none;
    outline: none;
    background-color: inherit;
    font-size: 24px;
    font-weight: 300;
    border-radius: 10px;
    line-height: 40px;
    color: var(--main-color);
    cursor: pointer;
    padding: 10px 30px;
    margin-bottom: 20px;
    min-width: 250px;
    transition: var(--trans);
}

.order_form_btn:hover {
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
    scale: 1.05;
    background-color: var(--footer-bg);
}