.eco-job-form-wrap,
.eco-job-form-wrap * {
    box-sizing: border-box;
}

.eco-job-form-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.eco-job-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.eco-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.eco-row--single {
    grid-template-columns: 1fr;
}

.eco-field {
    position: relative;
    min-width: 0;
}

.eco-field input,
.eco-field select {
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 13px 16px 13px 48px;
    border: 1px solid #d8dedb;
    border-radius: 10px;
    background: #fff;
    color: #17221c;
    font: inherit;
    font-size: 16px;
    line-height: 1.25;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.eco-field select {
    cursor: pointer;
    appearance: auto;
}

.eco-field input::placeholder {
    color: #7b8580;
    opacity: 1;
}

.eco-field input:focus,
.eco-field select:focus {
    border-color: #2d7d4e;
    box-shadow: 0 0 0 3px rgba(45, 125, 78, .14);
}

.eco-icon {
    position: absolute;
    z-index: 2;
    left: 17px;
    top: 50%;
    width: 20px;
    transform: translateY(-50%);
    color: #2d7d4e;
    font-size: 17px;
    line-height: 1;
    text-align: center;
    pointer-events: none;
}

.eco-upload {
    position: relative;
    width: 100%;
}

.eco-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.eco-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 116px;
    padding: 22px;
    border: 2px dashed #b9c9c0;
    border-radius: 12px;
    background: #f8fbf9;
    color: #254233;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.eco-upload label:hover,
.eco-upload input[type="file"]:focus + label {
    border-color: #2d7d4e;
    background: #f2f8f4;
}

.eco-upload input[type="file"]:focus + label {
    box-shadow: 0 0 0 3px rgba(45, 125, 78, .14);
}

.eco-upload-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e6f2ea;
    color: #267546;
    font-size: 27px;
    font-weight: 700;
}

.eco-upload-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.eco-upload-text strong {
    font-size: 16px;
    font-weight: 700;
}

.eco-upload-text small {
    color: #6c7871;
    font-size: 13px;
}

.eco-file-name {
    display: none;
    margin: 8px 0 0;
    color: #46534c;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.eco-file-name.is-visible {
    display: block;
}

.eco-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 9px;
    min-height: 54px;
    padding: 13px 26px;
    border: 0;
    border-radius: 10px;
    background: #267546;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.eco-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(38, 117, 70, .20);
}

.eco-submit:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.eco-message {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
}

.eco-message--success {
    border-color: #acd8bc;
    background: #eff9f2;
    color: #185c32;
}

.eco-message--error,
.eco-client-error:not(:empty) {
    border-color: #efb5b5;
    background: #fff3f3;
    color: #9c2222;
}

.eco-client-error:not(:empty) {
    padding: 12px 14px;
    border: 1px solid #efb5b5;
    border-radius: 9px;
    font-size: 14px;
}

.eco-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 700px) {
    .eco-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .eco-job-form {
        gap: 14px;
    }

    .eco-field input,
    .eco-field select {
        min-height: 54px;
        font-size: 16px;
    }

    .eco-upload label {
        min-height: 108px;
        padding: 18px;
    }

    .eco-submit {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 420px) {
    .eco-upload label {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}
