.input_linia::placeholder {
    color: #cbcaca;
    font-weight: bold;
    opacity: 1;
}

label.error{
    margin-top: 2px;
}

.input_linia.error{
    border: 2px solid #9B4444;
}

.submit_button_form_num_comanda{
    margin-top: 10px;
}

#contact_stage_buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.contact_stage_button {
    min-height: 76px;
    padding: 12px 16px;
    border: 2px solid #cbcaca;
    border-radius: 8px;
    background: #fff;
    color: #005898;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.contact_stage_button:hover,
.contact_stage_button:focus-visible,
.contact_stage_button.is-active {
    border-color: #005898;
    background: #005898;
    color: #fff;
    outline: none;
}

#contact_stage_buttons.contact_stage_error .contact_stage_button {
    border-color: #9b4444;
}

#contact_reason_field[hidden] {
    display: none;
}

@media (max-width: 768px) {
    #contact_stage_buttons {
        grid-template-columns: 1fr;
    }

    .contact_stage_button {
        min-height: 58px;
    }
}
