/* =========================================
   TRAINERSLINK REGISTRATION PAGE
========================================= */

.trainers-register-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   PAGE HEADER
========================================= */

.trainers-register-header {
    background: #f5f8fd;
    border-top: 1px solid #e2e8f1;
    border-bottom: 1px solid #dfe6ef;

    padding: 57px 0 58px;
}


.trainers-register-header h1 {
    margin: 0 0 18px;

    color: #111827;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
}


.trainers-register-header p {
    max-width: 800px;

    margin: 0;

    color: #5d7190;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   BADGE
========================================= */

.trainers-register-badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 13px;

    margin-bottom: 18px;

    background: #e9f1ff;
    color: #075bd8;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .7px;
    line-height: 1;
}


/* =========================================
   MAIN REGISTRATION SECTION
========================================= */

.trainers-register-main {
    background: #ffffff;

    padding: 78px 0 78px;
}


.trainers-register-grid {
    display: grid;

    grid-template-columns: 1fr 1.45fr;

    gap: 30px;

    align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.trainers-register-left {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================
   INFO CARD
========================================= */

.trainers-register-info-card,
.trainers-register-login-card {
    background: #ffffff;

    border: 1px solid #dfe7f1;

    border-radius: 17px;

    padding: 24px;
}


.trainers-register-info-card h2 {
    margin: 4px 0 23px;

    color: #111827;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}


.trainers-register-info-card p {
    margin: 0 0 25px;

    color: #536b8c;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   CHECK LIST
========================================= */

.trainers-register-check-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


.trainers-register-check-list li {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    margin-bottom: 16px;

    color: #17345b;

    font-size: 14px;
    line-height: 1.5;
}


.trainers-register-check-list li:last-child {
    margin-bottom: 0;
}


.trainers-register-check-list li span {
    color: #111827;

    font-size: 16px;
    line-height: 1.2;
}


/* =========================================
   LOGIN CARD
========================================= */

.trainers-register-login-card {
    padding: 22px 24px 24px;
}


.trainers-register-login-card .trainers-register-badge {
    margin-bottom: 8px;
}


.trainers-register-login-card h3 {
    margin: 0 0 10px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;
}


.trainers-register-login-card p {
    margin: 0 0 13px;

    color: #607391;

    font-size: 14px;
    line-height: 1.6;
}


.trainers-register-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 51px;

    padding: 10px 20px;

    color: #111827;
    background: #ffffff;

    border: 1px solid #d9e2ed;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .2s ease;
}


.trainers-register-login-btn:hover {
    color: #1764e8;

    border-color: #1764e8;
}


/* =========================================
   FORM CARD
========================================= */

.trainers-register-form-card {
    background: #ffffff;

    border: 1px solid #dce5ef;

    border-radius: 18px;

    padding: 29px 28px 27px;
}


.trainers-register-form-card h2 {
    margin: 0 0 26px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   FORM ROW
========================================= */

.trainers-register-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 28px;
}


/* =========================================
   FIELD
========================================= */

.trainers-register-field {
    min-width: 0;
}


.trainers-register-field label {
    display: block;

    margin-bottom: 9px;

    color: #111827;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   INPUT / SELECT / TEXTAREA
========================================= */

.trainers-register-field input,
.trainers-register-field select,
.trainers-register-field textarea {
    display: block;

    width: 100%;

    color: #172b4d;
    background: #ffffff;

    border: 1px solid #d4dfec;

    border-radius: 10px;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.trainers-register-field input,
.trainers-register-field select {
    height: 54px;

    padding: 10px 13px;
}


.trainers-register-field textarea {
    min-height: 104px;

    padding: 13px;

    resize: vertical;
}


.trainers-register-field input:focus,
.trainers-register-field select:focus,
.trainers-register-field textarea:focus {
    border-color: #1764e8;

    box-shadow:
        0 0 0 3px rgba(23, 100, 232, .08);
}


.trainers-register-field input::placeholder,
.trainers-register-field textarea::placeholder {
    color: #8090a6;

    opacity: 1;
}


/* =========================================
   FULL WIDTH FIELD
========================================= */

.trainers-register-full {
    margin-bottom: 28px;
}


/* =========================================
   TRAVEL AVAILABILITY
========================================= */

.trainers-register-travel {
    margin: 1px 0 25px;
}


.trainers-register-travel-title {
    display: block;

    margin-bottom: 14px;

    color: #111827;

    font-size: 12px;
    font-weight: 700;
}


.trainers-register-checkbox {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    cursor: pointer;
}


.trainers-register-checkbox input {
    width: 14px;
    height: 14px;

    margin: 0;

    cursor: pointer;
}


.trainers-register-checkbox span {
    color: #111827;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   TERMS
========================================= */

.trainers-register-terms {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 1px 0 22px;

    color: #17345b;

    font-size: 14px;
    line-height: 1.5;

    cursor: pointer;
}


.trainers-register-terms input {
    flex: 0 0 auto;

    width: 14px;
    height: 14px;

    margin: 2px 0 0;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.trainers-register-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 20px;

    color: #ffffff;
    background: #1764e8;

    border: 1px solid #1764e8;
    border-radius: 10px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: all .2s ease;
}


.trainers-register-submit:hover {
    background: #0d58d5;
    border-color: #0d58d5;

    transform: translateY(-1px);
}


/* =========================================
   ORGANISATION CTA
========================================= */

.trainers-register-org {
    background: #f5f8fd;

    border-top: 1px solid #edf1f6;

    padding: 77px 0 107px;

    text-align: center;
}


.trainers-register-org .trainers-register-badge {
    margin-bottom: 17px;
}


.trainers-register-org h2 {
    margin: 0 0 13px;

    color: #111827;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.8px;
}


.trainers-register-org p {
    margin: 0 auto 4px;

    max-width: 750px;

    color: #607391;

    font-size: 15px;
    line-height: 1.7;
}


.trainers-register-org-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 55px;

    margin-top: 2px;

    padding: 10px 22px;

    color: #ffffff;
    background: #1764e8;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .2s ease;
}


.trainers-register-org-btn:hover {
    color: #ffffff;
    background: #0d58d5;

    transform: translateY(-1px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .trainers-register-header {
        padding: 50px 0;
    }


    .trainers-register-header h1 {
        font-size: 38px;
    }


    .trainers-register-main {
        padding: 60px 0;
    }


    .trainers-register-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .trainers-register-left {
        display: grid;

        grid-template-columns: 1fr 1fr;

        align-items: start;
    }


    .trainers-register-org {
        padding: 65px 0 80px;
    }


    .trainers-register-org h2 {
        font-size: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .trainers-register-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Header */

    .trainers-register-header {
        padding: 38px 0 40px;
    }


    .trainers-register-badge {
        padding: 9px 12px;

        margin-bottom: 16px;

        font-size: 9px;
    }


    .trainers-register-header h1 {
        margin-bottom: 14px;

        font-size: 30px;

        letter-spacing: -.5px;
    }


    .trainers-register-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Main */

    .trainers-register-main {
        padding: 40px 0 50px;
    }


    .trainers-register-grid {
        display: flex;
        flex-direction: column;

        gap: 20px;
    }


    /* Left */

    .trainers-register-left {
        display: flex;
        flex-direction: column;

        gap: 16px;

        width: 100%;
    }


    .trainers-register-info-card,
    .trainers-register-login-card {
        padding: 20px;
    }


    .trainers-register-info-card h2 {
        font-size: 22px;
    }


    .trainers-register-info-card p {
        font-size: 14px;
    }


    /* Form */

    .trainers-register-form-card {
        width: 100%;

        padding: 23px 17px 25px;

        border-radius: 15px;
    }


    .trainers-register-form-card h2 {
        margin-bottom: 23px;

        font-size: 19px;
    }


    .trainers-register-form-row {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-bottom: 19px;
    }


    .trainers-register-field label {
        margin-bottom: 8px;

        font-size: 11px;
    }


    .trainers-register-field input,
    .trainers-register-field select {
        height: 49px;

        font-size: 13px;
    }


    .trainers-register-field textarea {
        min-height: 105px;

        font-size: 13px;
    }


    .trainers-register-full {
        margin-bottom: 20px;
    }


    .trainers-register-travel {
        margin-bottom: 22px;
    }


    .trainers-register-checkbox {
        margin-bottom: 12px;
    }


    .trainers-register-checkbox span {
        font-size: 13px;
    }


    .trainers-register-terms {
        font-size: 12px;
    }


    .trainers-register-submit {
        width: 100%;

        min-height: 45px;

        font-size: 12px;
    }


    /* Organisation */

    .trainers-register-org {
        padding: 55px 15px 65px;
    }


    .trainers-register-org h2 {
        font-size: 27px;

        letter-spacing: -.5px;
    }


    .trainers-register-org p {
        font-size: 13px;
    }


    .desktop-only {
        display: none;
    }


    .trainers-register-org-btn {
        min-height: 48px;

        margin-top: 8px;

        padding: 10px 19px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .trainers-register-header {
        padding: 32px 0 34px;
    }


    .trainers-register-header h1 {
        font-size: 27px;
    }


    .trainers-register-main {
        padding-top: 32px;
    }


    .trainers-register-info-card,
    .trainers-register-login-card {
        border-radius: 14px;
    }


    .trainers-register-form-card {
        padding: 20px 14px 22px;
    }


    .trainers-register-org h2 {
        font-size: 24px;
    }

}

/* =========================================
   REGISTRATION TYPE TABS
========================================= */

.trainers-register-type-tabs {
    display: flex;
    max-width: 650px;
    margin: 0 auto 35px;
    border-bottom: 1px solid #e5e7eb;
}

.trainers-register-type-tab {
    position: relative;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 15px 20px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.trainers-register-type-tab:hover {
    color: #1764e8;
}

.trainers-register-type-tab.active {
    color: #1764e8;
}

.trainers-register-type-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: #1764e8;
    border-radius: 3px 3px 0 0;
}


/* =========================================
   FORM WRAPPER
========================================= */

.trainers-register-form-wrapper {
    display: none;
    max-width: 650px;
    margin: 0 auto;
}

.trainers-register-form-wrapper.active {
    display: block;
}


/* =========================================
   FORM FIELDS
========================================= */

.trainers-register-field {
    margin-bottom: 22px;
}

.trainers-register-field label {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}

.trainers-register-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d9dee7;
    border-radius: 8px;
    background: #ffffff;
    color: #172033;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.trainers-register-input:focus {
    border-color: #1764e8;
    box-shadow: 0 0 0 3px rgba(23, 100, 232, 0.08);
}


/* =========================================
   USERNAME + PASSWORD
========================================= */

.trainers-register-account-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* =========================================
   PROCEED BUTTON
========================================= */

.trainers-register-action {
    margin-top: 30px;
}

.trainers-register-proceed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 180px;
    height: 48px;
    padding: 0 22px;

    border: 0;
    border-radius: 8px;
    background: #1764e8;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.25s ease;
}

.trainers-register-proceed-btn:hover {
    background: #0f55ca;
    transform: translateY(-1px);
}

.trainers-register-proceed-btn i {
    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .trainers-register-type-tabs {
        margin-bottom: 25px;
    }

    .trainers-register-type-tab {
        padding: 13px 8px;
        font-size: 13px;
    }

    .trainers-register-account-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trainers-register-proceed-btn {
        width: 100%;
    }
}

.trainers-registration-tabs {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    width: 100%;
    margin-bottom: 35px;
    border-bottom: 1px solid #e5e7eb;
}

.trainers-registration-tab {
    position: relative;

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

    gap: 5px;

    min-width: 0;
    padding: 10px 3px 13px;

    border: 0;
    background: transparent;

    color: #8a93a3;
    cursor: pointer;

    transition: all 0.25s ease;
}


/* Icon */

.trainers-registration-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    font-size: 15px;
}


/* Number */

.trainers-registration-tab-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #eef1f5;
    color: #7b8492;

    font-size: 10px;
    font-weight: 600;
}


/* Title */

.trainers-registration-tab-title {
    width: 100%;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 10px;
    font-weight: 600;
    text-align: center;
}


/* Active */

.trainers-registration-tab.active {
    color: #1764e8;
}

.trainers-registration-tab.active .trainers-registration-tab-number {
    background: #1764e8;
    color: #ffffff;
}

.trainers-registration-tab.active::after {
    content: "";

    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -1px;

    height: 3px;

    background: #1764e8;
    border-radius: 3px 3px 0 0;
}


/* Hover */

.trainers-registration-tab:hover {
    color: #1764e8;
}

/* =========================================
   CONTACT DETAILS - TAB 1
========================================= */

.trainers-registration-tab-content {
    display: none;
}

.trainers-registration-tab-content.active {
    display: block;
}

.trainers-registration-tab-heading {
    margin-bottom: 28px;
}

.trainers-registration-tab-heading h2 {
    margin: 0 0 6px;
    color: #172033;
    font-size: 24px;
    font-weight: 700;
}

.trainers-registration-tab-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}


/* Form Field */

.trainers-registration-field {
    margin-bottom: 22px;
}

.trainers-registration-field label {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}


/* Input */

.trainers-registration-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;

    border: 1px solid #d9dee7;
    border-radius: 8px;

    background: #ffffff;
    color: #172033;

    font-size: 14px;
    outline: none;

    transition: border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.trainers-registration-input::placeholder {
    color: #a0a7b3;
}

.trainers-registration-input:focus {
    border-color: #1764e8;
    box-shadow: 0 0 0 3px rgba(23, 100, 232, 0.08);
}

.trainers-registration-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 135px;
    height: 46px;
    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #1764e8;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

.trainers-registration-next:hover {
    background: #0f55ca;
    transform: translateY(-1px);
}

.trainers-registration-next i {
    font-size: 12px;
}

/* Mobile */

@media (max-width: 767.98px) {

    .trainers-registration-tab-heading h2 {
        font-size: 21px;
    }

    .trainers-registration-field {
        margin-bottom: 18px;
    }

    .trainers-registration-actions {
        margin-top: 5px;
    }

    .trainers-registration-next {
        width: 100%;
    }
}

/* =========================================
   BASIC PROFILE - TAB 2
========================================= */

.trainers-registration-field label span {
    color: #dc3545;
}

.trainers-registration-help {
    display: block;
    margin-top: 7px;
    color: #8a93a3;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   PROFILE PHOTO UPLOAD
========================================= */

.trainers-registration-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.trainers-registration-upload {
    width: 100%;
}

.trainers-registration-upload-box {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 145px;
    margin: 0 !important;
    padding: 20px;

    border: 2px dashed #d9dee7;
    border-radius: 10px;

    background: #fafbfc;
    color: #172033;

    cursor: pointer;
    transition: all 0.25s ease;
}

.trainers-registration-upload-box i {
    margin-bottom: 10px;
    color: #1764e8;
    font-size: 28px;
}

.trainers-registration-upload-box strong {
    margin-bottom: 5px;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}

.trainers-registration-upload-box small {
    color: #8a93a3;
    font-size: 12px;
    font-weight: 400;
}

.trainers-registration-upload-box:hover {
    border-color: #1764e8;
    background: #f5f8ff;
}


/* =========================================
   TEXTAREA
========================================= */

.trainers-registration-textarea {
    width: 100%;
    min-height: 150px;
    padding: 13px 14px;

    border: 1px solid #d9dee7;
    border-radius: 8px;

    background: #ffffff;
    color: #172033;

    font-size: 14px;
    line-height: 1.6;

    outline: none;
    resize: vertical;
    box-sizing: border-box;

    transition: border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.trainers-registration-textarea::placeholder {
    color: #a0a7b3;
}

.trainers-registration-textarea:focus {
    border-color: #1764e8;
    box-shadow: 0 0 0 3px rgba(23, 100, 232, 0.08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .trainers-registration-upload-box {
        min-height: 130px;
    }

    .trainers-registration-textarea {
        min-height: 130px;
    }
}


.trainers-registration-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 130px;
    height: 46px;
    padding: 0 20px;

    border: 1px solid #d9dee7;
    border-radius: 8px;

    background: #ffffff;
    color: #172033;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.trainers-registration-back i {
    font-size: 12px;
}

.trainers-registration-back:hover {
    border-color: #1764e8;
    background: #f5f8ff;
    color: #1764e8;
}

.trainers-registration-back:active {
    transform: translateY(1px);
}

.trainers-registration-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 575.98px) {

    .trainers-registration-back {
        width: 100%;
    }
}

.trainers-registration-field select[multiple] {
    min-height: 120px;
    height: auto;
    padding: 10px 14px;
    cursor: pointer;
}

.trainers-registration-field select[multiple] option {
    padding: 7px 5px;
}

/* =========================================
   EDUCATION & QUALIFICATIONS
========================================= */

.trainers-registration-section-title {
    margin: 30px 0 20px;
}

.trainers-registration-section-title h3 {
    margin: 0 0 5px;
    color: #172033;
    font-size: 17px;
    font-weight: 700;
}

.trainers-registration-section-title p {
    margin: 0;
    color: #7a8494;
    font-size: 13px;
}


/* Qualification Entry */

.trainers-qualification-entry {
    padding: 20px;
    margin-bottom: 15px;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    background: #fafbfc;
}


/* Add Qualification */

.trainers-qualification-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 3px;
    padding: 9px 15px;

    border: 1px solid #1764e8;
    border-radius: 7px;

    background: #ffffff;
    color: #1764e8;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.2s ease;
}

.trainers-qualification-add-btn:hover {
    background: #1764e8;
    color: #ffffff;
}


/* Additional Qualification */

.trainers-additional-qualification-title {
    margin-top: 35px;
}

.trainers-additional-qualification-row {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;
}

.trainers-additional-qualification-row .trainers-registration-input {
    flex: 1;
}


/* Remove */

.trainers-additional-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border: 1px solid #dc3545;
    border-radius: 7px;

    background: #ffffff;
    color: #dc3545;

    cursor: pointer;
    transition: all 0.2s ease;
}

.trainers-additional-remove-btn:hover {
    background: #dc3545;
    color: #ffffff;
}


/* Mobile */

@media (max-width: 575.98px) {

    .trainers-qualification-entry {
        padding: 15px;
    }

    .trainers-additional-qualification-row {
        align-items: stretch;
    }

    .trainers-additional-remove-btn {
        flex: 0 0 40px;
        width: 40px;
    }
}

/* =========================================
   CERTIFICATIONS
========================================= */

.trainers-certification-entry {
    padding: 20px;
    margin-bottom: 15px;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    background: #fafbfc;
}


/* =========================================
   CERTIFICATE UPLOAD
========================================= */

.trainers-certificates-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.trainers-certificates-upload-box {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 145px;
    margin: 0 !important;
    padding: 20px;

    border: 2px dashed #d9dee7;
    border-radius: 10px;

    background: #fafbfc;
    color: #172033;

    cursor: pointer;
    text-align: center;

    transition: all 0.25s ease;
}

.trainers-certificates-upload-box:hover {
    border-color: #1764e8;
    background: #f5f8ff;
}

.trainers-certificates-upload-box i {
    margin-bottom: 10px;
    color: #1764e8;
    font-size: 28px;
}

.trainers-certificates-upload-box strong {
    margin-bottom: 5px;
    font-size: 14px;
}

.trainers-certificates-upload-box small {
    color: #8a93a3;
    font-size: 12px;
}


/* =========================================
   FILE LIST
========================================= */

.trainers-certificate-file-list {
    margin-top: 12px;
}

.trainers-certificate-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;
    margin-bottom: 8px;

    border: 1px solid #e5e7eb;
    border-radius: 7px;

    background: #ffffff;
    font-size: 13px;
}

.trainers-certificate-file-name {
    display: flex;
    align-items: center;
    gap: 8px;

    min-width: 0;
}

.trainers-certificate-file-name i {
    color: #1764e8;
}

.trainers-certificate-file-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trainers-certificate-file-remove {
    flex: 0 0 auto;

    border: 0;
    background: transparent;

    color: #dc3545;
    cursor: pointer;
}


/* Mobile */

@media (max-width: 575.98px) {

    .trainers-certification-entry {
        padding: 15px;
    }

    .trainers-certificates-upload-box {
        min-height: 130px;
    }
}

.trainers-registration-field select[multiple] {
    height: auto;
    min-height: 120px;
    padding: 10px 14px;
}

.trainers-registration-field select[multiple] option {
    padding: 7px 6px;
}

.trainers-registration-steps {
    width: 100%;
}

.trainers-registration-step {
    margin-bottom: 12px;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.trainers-registration-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 66px;
    padding: 0 20px;

    border: 0;
    background: #ffffff;

    color: #172033;
    text-align: left;

    cursor: pointer;
    transition: all 0.25s ease;
}

.trainers-registration-step-header:hover {
    color: #1764e8;
}

.trainers-registration-step-title {
    display: flex;
    align-items: center;
    gap: 13px;

    font-size: 15px;
    font-weight: 600;
}

.trainers-registration-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: #eef3fb;

    color: #1764e8;
    font-size: 13px;
    font-weight: 700;
}

.trainers-registration-step-icon {
    color: #1764e8;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.trainers-registration-step.active .trainers-registration-step-icon {
    transform: rotate(45deg);
}

.trainers-registration-step-content {
    display: none;

    padding: 25px 20px;
    border-top: 1px solid #e8edf4;
}

.trainers-registration-step.active .trainers-registration-step-content {
    display: block;
}

.trainers-registration-step.active .trainers-registration-step-number {
    background: #1764e8;
    color: #ffffff;
}


/* Mobile */

@media (max-width: 575.98px) {

    .trainers-registration-step-header {
        min-height: 60px;
        padding: 0 15px;
    }

    .trainers-registration-step-title {
        gap: 10px;
        font-size: 14px;
    }

    .trainers-registration-step-number {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .trainers-registration-step-content {
        padding: 20px 15px;
    }
}


/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
.trainers-payment-section {
    width: 100%;
    padding: 20px 0 40px;
}

.trainers-payment-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 35px 30px;
    border: 1px solid #e1e6ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(23, 32, 51, .08);
    text-align: center;
}

.trainers-payment-header {
    margin-bottom: 25px;
}

.trainers-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: #eef3fb;
    color: #1764e8;
    font-size: 22px;
}

.trainers-payment-header h2 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 22px;
    font-weight: 700;
}

.trainers-payment-header p {
    max-width: 470px;
    margin: 0 auto;
    color: #7d8798;
    font-size: 14px;
    line-height: 1.6;
}

.trainers-payment-qr {
    margin: 25px auto 20px;
}

.trainers-payment-qr-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    padding: 15px;
    /* border: 1px solid #dce3ed; */
    /* border-radius: 16px; */
    /* background: #fff; */
    /* box-shadow: 0 8px 25px rgba(23, 32, 51, .07); */
}

.trainers-payment-qr-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.trainers-payment-scan-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: #687386;
    font-size: 13px;
}

.trainers-payment-scan-text i {
    color: #1764e8;
    font-size: 15px;
}

.trainers-payment-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 25px;
    color: #8a93a3;
    font-size: 12px;
    font-weight: 500;
}

.trainers-payment-divider:before, .trainers-payment-divider:after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e9f0;
}

.trainers-payment-form {
    text-align: left;
}

.trainers-payment-form .trainers-registration-field {
    margin-bottom: 18px;
}

.trainers-payment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: #1764e8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.trainers-payment-submit:hover {
    background: #0f55ca;
    transform: translateY(-1px);
}

.trainers-payment-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f7f9fc;
    color: #7d8798;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.trainers-payment-note i {
    margin-top: 2px;
    color: #1764e8;
}

@media(max-width:575.98px) {
    .trainers-payment-section {
        padding: 10px 0 25px;
    }

    .trainers-payment-card {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .trainers-payment-header h2 {
        font-size: 19px;
    }

    .trainers-payment-qr-frame {
        width: 230px;
        height: 230px;
        padding: 12px;
    }
}

.trainers-payment-upi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    color: #172033;
    font-size: 13px;
}

.trainers-payment-upi strong {
    font-weight: 600;
}

.trainers-payment-upi span {
    color: #1764e8;
    font-weight: 600;
    word-break: break-all;
}

.trainers-payment-upi button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
    padding: 5px 9px;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    background: #fff;
    color: #1764e8;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.trainers-payment-upi button:hover {
    border-color: #1764e8;
    background: #f5f8ff;
}

.trainers-payment-upi button.copied {
    background: #1764e8;
    color: #fff;
    border-color: #1764e8;
}

@media(max-width:575.98px) {
    .trainers-payment-upi {
        flex-wrap: wrap;
        gap: 6px;
    }
}

.trainers-payment-thankyou {
    padding: 15px 0 5px;
    text-align: center;
}

.trainers-payment-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eaf8f0;
    color: #198754;
    font-size: 28px;
}

.trainers-payment-thankyou h2 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 24px;
    font-weight: 700;
}

.trainers-payment-thankyou>p {
    margin: 0 auto 22px;
    color: #7d8798;
    font-size: 14px;
    line-height: 1.6;
}

.trainers-payment-tnx {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 18px;
    margin: 0 auto 20px;
    border: 1px solid #e2e7ef;
    border-radius: 9px;
    background: #f8fafc;
}

.trainers-payment-tnx span {
    color: #8a93a3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.trainers-payment-tnx strong {
    color: #1764e8;
    font-size: 14px;
    word-break: break-all;
}

/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */
/* EXTRA CSS */


.trainers-profile-file-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 9px 12px;
    border: 1px solid #e1e6ef;
    border-radius: 7px;
    background: #f8fafc;
    color: #172033;
    font-size: 12px;
}

.trainers-profile-file-name i {
    color: #1764e8;
    font-size: 14px;
}

.trainers-profile-file-name span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}