/* =========================================================
   EMPLOYER REGISTER MODAL
   ========================================================= */

.employer-register-modal {
    background: #ffffff;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}


/* HEADER */

.employer-modal-header {
    padding: 28px 32px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.employer-modal-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
}

.employer-modal-header p {
    font-size: 14px;
    color: #777;
}

.employer-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.10);
    color: #7c3aed;
    font-size: 25px;
    flex-shrink: 0;
}

.employer-close-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    background: #f8f8f8;
    color: #777;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;
    line-height: 1;

    cursor: pointer;
    flex-shrink: 0;

    transition: all 0.2s ease;
}

.employer-close-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.employer-close-btn:hover {
    background: #f1f1f1;
    border-color: #dcdcdc;
    color: #222;
    transform: rotate(90deg);
}


/* BODY */

.employer-modal-body {
    padding: 10px 32px 32px;
}


/* LABEL */

.employer-field-label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #282828;
}

.employer-field-label span {
    color: #ef4444;
    margin-left: 2px;
}


/* INPUT */

.employer-input-wrapper {
    position: relative;
    width: 100%;
}

.employer-input-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 19px;
    z-index: 2;
    pointer-events: none;
}

.employer-input {
    width: 100%;
    height: 54px;
    border: 1px solid #dedede;
    border-radius: 13px;
    background: #fafafa;
    padding: 0 17px 0 48px;
    font-size: 14px;
    color: #202020;
    outline: none;
    transition: all 0.2s ease;
}

.employer-input::placeholder {
    color: #a5a5a5;
}

.employer-input:hover {
    border-color: #cfcfcf;
    background: #fff;
}

.employer-input:focus {
    border-color: #7c3aed;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.09);
}

.employer-input:focus + .employer-password-toggle {
    color: #7c3aed;
}


/* PASSWORD */

.employer-password-input {
    padding-right: 50px;
}

.employer-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #888;
    font-size: 19px;
    padding: 4px;
    cursor: pointer;
}

.employer-password-toggle:hover {
    color: #7c3aed;
}


/* HELP TEXT */

.employer-field-help {
    display: block;
    margin-top: 7px;
    color: #8a8a8a;
    font-size: 12px;
}


/* SECURITY NOTE */

.employer-terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 14px;
    border-radius: 11px;
    background: #f8f7ff;
    color: #686868;
    font-size: 12px;
    line-height: 1.5;
}

.employer-terms i {
    color: #7c3aed;
    font-size: 18px;
    flex-shrink: 0;
}


/* SUBMIT BUTTON */

.employer-submit-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 14px;
    background: #7c3aed;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.employer-submit-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.22);
}

.employer-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


/* FORM NOTE */

.employer-form-note {
    text-align: center;
    margin: 13px 0 0;
    font-size: 12px;
    color: #8a8a8a;
}

.employer-form-note a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.employer-form-note a:hover {
    text-decoration: underline;
}


/* SUCCESS */

.employer-register-success {
    text-align: center;
    padding: 35px 15px 15px;
}

.employer-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf3;
    color: #16a34a;
    font-size: 34px;
}

.employer-register-success h4 {
    margin-bottom: 9px;
    font-size: 23px;
    font-weight: 700;
    color: #171717;
}

.employer-register-success > p {
    margin-bottom: 20px;
    color: #777;
    font-size: 14px;
}


/* REVIEW BOX */

.employer-review-box {
    max-width: 520px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 14px;
    background: #faf8ff;
    border: 1px solid #eee8ff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.employer-review-box > i {
    color: #7c3aed;
    font-size: 22px;
    flex-shrink: 0;
}

.employer-review-box strong {
    display: block;
    margin-bottom: 3px;
    color: #272727;
    font-size: 14px;
}

.employer-review-box span {
    display: block;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}


/* SUCCESS BUTTON */

.employer-success-btn {
    min-width: 140px;
    height: 46px;
    margin-top: 22px;
    padding: 0 25px;
    border: 0;
    border-radius: 50px;
    background: #7c3aed;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* EPLOYER TERMS TEXT */

.employer-terms-text{
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 767px) {

    .employer-modal-header {
        padding: 22px 20px 18px;
    }

    .employer-modal-body {
        padding: 5px 20px 24px;
    }

    .employer-modal-header h4 {
        font-size: 20px;
    }

    .employer-modal-icon {
        width: 45px;
        height: 45px;
        font-size: 21px;
    }

    .employer-input {
        height: 52px;
    }

    .employer-register-modal {
        border-radius: 20px !important;
    }

    .employer-modal-header {
        align-items: flex-start;
    }

}