.alee-job-application-form {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.alee-form-intro {
    margin: 0 0 1.25rem;
    padding: 1rem;
    background: #f5f5f5;
    border-left: 5px solid #222;
    line-height: 1.45;
}

.alee-application-notice {
    max-width: 980px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 6px;
}

.alee-application-notice.success {
    background: #eef9f0;
    border: 1px solid #7cc68a;
}

.alee-form-progress {
    display: none;
    margin: 0 0 1.25rem;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.alee-enhanced .alee-form-progress {
    display: block;
}

.alee-progress-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: .65rem;
}

.alee-progress-count {
    font-weight: 700;
}

.alee-progress-title {
    color: #555;
    text-align: right;
}

.alee-progress-track {
    height: 10px;
    background: #e6e6e6;
    border-radius: 999px;
    overflow: hidden;
}

.alee-progress-bar {
    height: 100%;
    width: 20%;
    background: #222;
    border-radius: 999px;
    transition: width .2s ease;
}

.alee-form-page {
    margin: 1.25rem 0;
    padding: 1.25rem;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
}

.alee-enhanced .alee-form-page {
    display: none;
}

.alee-enhanced .alee-form-page.is-active {
    display: block;
}

.alee-form-page > legend {
    padding: 0 .5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.alee-page-description {
    margin: .25rem 0 1.25rem;
    color: #555;
}

.alee-form-group {
    margin: 0 0 1.25rem;
    padding: 1rem;
    background: #fbfbfb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.alee-form-group:last-child {
    margin-bottom: 0;
}

.alee-form-group h3 {
    margin: 0 0 .9rem;
    padding-bottom: .45rem;
    border-bottom: 1px solid #e1e1e1;
    font-size: 1.05rem;
}

.alee-field-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.alee-field {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.alee-field-textarea {
    align-items: start;
}

.alee-field > label {
    font-weight: 600;
    line-height: 1.35;
}

.alee-control-wrap {
    min-width: 0;
}

.alee-field input,
.alee-field select,
.alee-field textarea {
    width: 100%;
    min-height: 42px;
    padding: .6rem;
    border: 1px solid #bbb;
    border-radius: 5px;
    font: inherit;
    background: #fff;
}

.alee-field input:focus,
.alee-field select:focus,
.alee-field textarea:focus {
    border-color: #222;
    outline: 2px solid rgba(0, 0, 0, .12);
    outline-offset: 1px;
}

.alee-field textarea {
    min-height: 110px;
}

.alee-field small,
.alee-form-group small {
    display: block;
    margin-top: .35rem;
    color: #555;
    font-size: .85rem;
}

.alee-checkbox-line {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .65rem;
    margin: .75rem 0;
    line-height: 1.45;
    font-weight: 600;
}

.alee-checkbox-line input {
    margin-top: .2rem;
}

.alee-form-navigation {
    display: none;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.alee-enhanced .alee-form-navigation {
    display: flex;
}

.alee-nav-button,
.alee-submit-button {
    padding: .85rem 1.35rem;
    border: 0;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.alee-nav-button:hover,
.alee-nav-button:focus,
.alee-submit-button:hover,
.alee-submit-button:focus {
    background: #444;
}

.alee-nav-button:disabled {
    background: #c9c9c9;
    color: #666;
    cursor: not-allowed;
}

.alee-submit-button {
    margin-top: 1.25rem;
}

.alee-enhanced .alee-submit-button {
    display: none;
}

.required {
    color: #b00020;
}

.alee-hp-field {
    position: absolute !important;
    left: -99999px !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 760px) {
    .alee-job-application-form {
        padding: 1rem;
    }

    .alee-progress-row {
        display: block;
    }

    .alee-progress-title {
        display: block;
        margin-top: .25rem;
        text-align: left;
    }

    .alee-form-page,
    .alee-form-group {
        padding: 1rem;
    }

    .alee-field {
        grid-template-columns: 1fr;
        gap: .35rem;
        align-items: stretch;
    }

    .alee-form-navigation {
        flex-direction: column-reverse;
    }

    .alee-nav-button,
    .alee-submit-button {
        width: 100%;
    }
}
