

.kontakt_container {
    padding: 30px 15px 90px 15px;
    display: flex;
    @media (min-width: 480px) {
        padding: 30px 30px 90px 30px;
    }
    @media (min-width: 1300px) {
        padding: 30px 0 90px 0;
    }
}
.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.work_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inputs_container {
    display: flex;
    gap: 15px;
    flex-direction: column;
    @media (min-width: 480px) {
        flex-direction: row;
    }
}
.error_message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
.input_error_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.kontakt_input_container {
    display: flex;
    max-width: 400px;
    width: 100%;
}
.kontakt_button_container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    button {
        max-width: 300px;
        width: 100%;
    }
}
.jetzt-message {
    font-size: 15px;
    margin-top: 10px;
}
.jetzt-message.success {
    color: green;
}
.jetzt-message.error {
    color: red;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--orange-700); /* оранжевая рамка */
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

/* галочка */
.checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid var(--orange-700);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

/* состояние checked */
.checkbox input:checked + .checkmark::after {
    opacity: 1;
}

.file_upload_wrapper {
    margin: 20px 0;
}

.file_upload_area {
    display: block;
    border: 2px dashed #cfcfcf;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fafafa;
}

.file_upload_area:hover {
    border-color: #ff7a00;
    background-color: #fff7f0;
}

.file_upload_text {
    font-size: 18px;
    color: #555;
}

.file_upload_text small {
    font-size: 14px;
    color: #888;
}

.file_link {
    color: #007bff;
    text-decoration: underline;
}

.file_upload_area input[type="file"] {
    display: none;
}
.file_upload_area.dragover {
    border-color: #ff7a00;
    background-color: #fff3e6;
}