﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", serif;
}

:root {
    --primary-color: #BD5719;
    --light-primary: #FFFAF7;
    --secondary-color: #A2B75E;
    --light-secondary: #F2F5E6;
    --primary-text: #444444;
    --secondary-text: #625C5C;
    --bg-white: #ffffff;
}

a {
    text-decoration: none;
    color: var(--primary-text);
    font-size: 15px;
}

.btn,
.btn:hover,
.btn:active,
.btn:visited,
.btn:focus {
    background-color: var(--primary-color);
    padding: 24px 44px;
    color: var(--bg-white);
    font-size: 15px;
    border-radius: 10px;
    text-transform: capitalize;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}


.login-banner {
    background-image: url(/img/welcome-images/welcome-screen-image.png);
    height: 100%;
    min-height: calc(100vh - 106px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .login-banner .banner-content .banner-logo img {
        width: 100%;
        max-width: 200px;
    }

    .login-banner .banner-content .inner-content h1 {
        font-size: 54px;
        font-weight: 800;
    }

    .login-banner .banner-content .inner-content p {
        word-spacing: 1px;
    }

    .login-banner .banner-content .inner-content h1 span {
        color: var(--primary-color);
    }

    .login-banner .banner-content .inner-content p span {
        color: var(--secondary-text);
    }

.footer-content {
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-content .footer-logo img {
    width: 100%;
    max-width: 145px;
}

.footer-content .contact ul {
    text-align: right;
}

footer .footer-links .links,
footer .footer-content a {
    color: var(--secondary-text);
}

/* Multistep Wizard */

.login-wrapper .btn {
    padding: 24px 52px;
    margin-top: 30px;
}

.login-wrapper .stepper-head-icon {
    height: 44px;
    width: 100%;
    border-radius: 0px;
    overflow-y: clip;
    background-color: var(--light-secondary);
    color: var(--secondary-text);
    font-size: 15px;
    font-weight: 600;
    margin-inline: 0 !important;
    position: relative;
}

    .login-wrapper .stepper-head-icon::after {
        content: '';
        display: block;
        width: 34px;
        height: 34px;
        position: absolute;
        rotate: 45deg;
        right: -17px;
        z-index: 2;
        border: 1px solid #ffffff;
        border-width: 5px 5px 0px 0px;
        background: #f2f5e6;
    }

.login-wrapper .stepper-step:first-child .stepper-head-icon:before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    rotate: 45deg;
    left: -21px;
    z-index: 2;
    border: 1px solid #ffffff;
    border-width: 5px 5px 0px 0px;
    background: #ffffff;
}

.login-wrapper .stepper-active .stepper-head-icon::after,
.login-wrapper .stepper-completed .stepper-head-icon::after {
    background-color: var(--secondary-color);
}

.login-wrapper .stepper:not(.stepper-vertical) .stepper-step:not(:last-child) .stepper-head:after {
    content: none;
}

.login-wrapper .stepper:not(.stepper-vertical) .stepper-step:not(:first-child) .stepper-head:before {
    content: none;
}

.login-wrapper .stepper-completed .stepper-head-icon {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
}

.login-wrapper .stepper-active .stepper-head-icon {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.login-wrapper .steps-head-hover,
.login-wrapper .stepper-head:hover {
    background-color: transparent;
}

.login-wrapper .stepper:not(.stepper-vertical) .stepper-step {
    flex: inherit;
    height: var(--mdb-stepper-step-height);
    width: 33.33%;
}

    .login-wrapper .stepper:not(.stepper-vertical) .stepper-step .stepper-head {
        pointer-events: none;
    }

/* Step 1 */

/* Image Section */

.login-wrapper .inner-content .step-preview .image-section {
    background-image: linear-gradient(28deg, #212222 21.92%, rgba(82, 88, 102, 0.00) 71.23%), url('../../img/welcome-images/defaultstepper-image.png');
    ;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    padding: 30px;
    border-radius: 10px;
    background-position: center;
}

    .login-wrapper .inner-content .step-preview .image-section .description h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .login-wrapper .inner-content .step-preview .image-section .descriptiont p {
        font-size: 17px;
        font-weight: 500;
    }

.step-preview .image-section .note-section {
    border-radius: 10px;
    background: #546C77;
    padding: 25px 20px;
}

    .step-preview .image-section .note-section .note-content {
        gap: 25px;
    }


    .step-preview .image-section .note-section .icon-section {
        background: #FFFFFF21;
        display: flex;
        padding: 26px;
        border-radius: 15px;
    }

/* Note section (responsive) */

.login-wrapper .note-section-responsive {
    border-radius: 10px;
    background: #546C77;
    padding: 25px 20px;
    margin-top: 30px;
    display: none;
}

    .login-wrapper .note-section-responsive p {
        color: #EEEDED;
        font-size: 13px;
        font-style: italic;
    }

    .login-wrapper .note-section-responsive span {
        font-style: normal;
        letter-spacing: 3px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .login-wrapper .note-section-responsive .icon-section {
        background: #FFFFFF21;
        display: flex;
        padding: 28px;
        border-radius: 15px;
    }

    .login-wrapper .note-section-responsive .note-content {
        gap: 25px;
    }

/* Note section (responsive) End */

.step-preview .image-section .note-section p {
    color: #EEEDED;
    font-size: 14px;
    font-style: italic;
}

.step-preview .image-section .note-section span {
    font-style: normal;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Form Section */

.login-wrapper .inner-content .step-preview .form-section .form-content {
    width: 100%;
    max-width: 600px;
}

.login-wrapper .inner-content .step-preview .form-section .section-heading {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 36px;
    color: #444444;
}

.login-wrapper .inner-content .step-preview .form-section .form-content .organisation-pills .pill {
    padding: 18px 10px;
    border-radius: 10px;
    background-color: #FFFAF7;
    width: 100%;
    max-width: 190px;
    line-height: 17px;
    border: 1px solid transparent;
}

    .login-wrapper .inner-content .step-preview .form-section .form-content .organisation-pills .pill span svg {
        margin-right: 16px;
    }

    .login-wrapper .inner-content .step-preview .form-section .form-content .organisation-pills .pill span .organisation-type {
        font-weight: 600;
        font-size: 15px;
        color: var(--secondary-text);
    }

    .login-wrapper .inner-content .step-preview .form-section .form-content .organisation-pills .pill.active {
        border: 1px solid #F6ECE8;
        background: #FFF;
        box-shadow: 0px 0px 76.1px -17px rgba(0, 0, 0, 0.11);
    }

        .login-wrapper .inner-content .step-preview .form-section .form-content .organisation-pills .pill.active .pill-icon {
            fill: var(--primary-color);
        }

/* Dropdown Menu */

.select-input.focused ~ .form-notch .form-notch-trailing,
.form-outline .form-control.select-input:focus ~ .form-notch .form-notch-trailing {
    border-color: #F6ECE8;
    box-shadow: 0px 0px 76.1px -17px rgba(0, 0, 0, 0.11);
}

.login-wrapper .select-arrow {
    top: 22px;
}

.login-wrapper .select-input.form-control[readonly]:not([disabled]) {
    background-color: rgb(250 250 250);
    font-size: 14px;
    font-weight: 500;
}


.select-input.focused ~ .form-notch .form-notch-leading,
.form-outline .form-control.select-input:focus ~ .form-notch .form-notch-leading {
    border-color: #f9f9f9;
    box-shadow: 0px 0px 76.1px -17px rgba(0, 0, 0, 0.11);
}

.select-option.selected.active,
.select-option.selected:hover:not(.disabled) {
    background-color: rgb(188 86 25);
    color: #fff;
}

/* Step-2 */

.login-wrapper .step-2 .inner-content .step-2 .forgot-password {
    color: #525866;
}

.login-wrapper .step-2 .forgot-password .password-link {
    color: var(--secondary-color);
}

.login-wrapper .step-2 .options-wrapper {
    font-size: 15px;
    font-weight: 500;
}


    .login-wrapper .step-2 .options-wrapper .create-account {
        margin: 25px 0px 30px 0px;
    }

        .login-wrapper .step-2 .options-wrapper .create-account p {
            color: var(--secondary-text);
        }

            .login-wrapper .step-2 .options-wrapper .create-account p a {
                font-weight: 600;
                color: #444444;
            }

.login-wrapper .step-2 .form-section .forgot-password {
    font-size: 15px;
    font-weight: 500;
}

.login-wrapper .step-2 .form-section .anonymous-login p {
    font-weight: 500;
    color: #292929;
    font-size: 15px;
    margin-top: 30px;
}

.login-wrapper .step-2 .image-section .connect-us .card-heading {
    font-size: 22px;
}

.login-wrapper .step-2 .image-section .connect-us .connect-links .link-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.13);
    margin-bottom: 14px;
}

.login-wrapper .step-2 .image-section .connect-us .connect-links .link-card .links {
    font-size: 15px;
}

    .login-wrapper .step-2 .image-section .connect-us .connect-links .link-card .links p {
        color: #CACACA;
    }

/* Need help reponsive */

.login-wrapper .connect-us-responsive {
    display: none;
}

/* Need help reponsive End */

.login-wrapper .step-2 .form-section .need-help {
    background-color: var(--light-primary);
    text-align: left;
    padding: 32px 28px;
    margin-top: 30px;
}

    .login-wrapper .step-2 .form-section .need-help .helpcard-heading {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .login-wrapper .step-2 .form-section .need-help .help-card .icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        background-color: var(--bg-white);
        margin-bottom: 10px;
    }

    .login-wrapper .step-2 .form-section .need-help .help-card .links a {
        font-size: 14px;
    }

/* Step -3 */

.login-wrapper .step-3 .form-content .createaccount-logo {
    display: inline-block;
    padding: 30px 20px;
    background-color: var(--light-primary);
}

.login-wrapper .step-3 .form-content .section-heading {
    margin: 28px 0px 24px 0px;
}

.login-wrapper .step-3 .eap-login {
    font-weight: 500;
    color: #292929;
    font-size: 15px;
    margin-top: 20px;
}

/* Form */

.login-wrapper .form-outline .form-control {
    height: 65px;
    border: 1px solid #F3F3F3;
    background: #FAFAFA;
    border-radius: 10px;
    padding: 5px 20px;
}

    .login-wrapper .form-outline .form-control:focus {
        background: var(--bg-white);
    }

.login-wrapper input::placeholder {
    color: #ADADAD;
    font-size: 14px;
    font-weight: 500;
}

.login-wrapper .form-outline .form-control ~ .form-notch div {
    border: none;
}

.login-wrapper .form-outline .form-control:focus ~ .form-notch .form-notch-leading,
.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
    box-shadow: 0px 5px 30.8px 0px rgba(0, 0, 0, 0.05);
}


.login-wrapper .form-check-input[type=checkbox]:checked {
    background-color: #bd5719;
    border-color: var(--primary-color);
}

/* Modal css */
.submit-modal .modal-body {
    font-size: 15px;
}

    .submit-modal .modal-body .check-circle {
        height: 117px;
        width: 117px;
        background-color: var(--light-primary);
        display: flex;
        border-radius: 100%;
        justify-content: center;
        align-items: center;
    }

    .submit-modal .modal-body .user-info .check-circle {
        height: 100px;
        width: 100px;
    }

    .submit-modal .modal-body .body-content h4 {
        font-weight: 600;
        margin-top: 30px;
    }

    .submit-modal .modal-body .body-content p {
        color: #959595;
        font-weight: 500;
        line-height: 20px
    }

    .submit-modal .modal-body .user-info {
        gap: 27px;
    }

        .submit-modal .modal-body .user-info h5 {
            color: #444444;
            font-weight: 600;
        }

    .submit-modal .modal-body .description-line {
        margin-top: 20px;
    }

        .submit-modal .modal-body .description-line a {
            color: var(--primary-color);
        }

        .submit-modal .modal-body .description-line p {
            color: var(--secondary-text);
            font-weight: 600;
        }

.modal-dialog {
    max-width: 700px;
}

/* Calendar CSS */

.datepicker-cell:not(.selected).focused .datepicker-cell-content {
    background-color: var(--light-primary);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.datepicker-cell.selected .datepicker-cell-content {
    background-color: #bd5719;
}


/* Terms and Use */
.terms-modal a {
    color: #3b71ca;
}

.terms-modal .modal-header {
    background-color: var(--primary-color);
}

.terms-modal .terms-agreement p {
    font-size: 15px;
    font-weight: 600;
}

.terms-modal .terms-lines p {
    font-size: 15px;
}

.terms-modal .cookies-heading {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 30px 0px 10px 0px;
}

.terms-lines h5 {
    margin: 40px 0px 12px 0px;
}

.terms-modal .terms-lines ul li {
    font-size: 15px;
}

.error-message {
    display: block;
    text-align: start;
    font-size: 14px;
}

.login-wrapper .create-account-form {
    height: 721px;
    overflow-y: auto;
}

.privacy-header {
    padding: 10px 12px;
}