/* ----------------------------- */
/* ==Global css                  */
/* ----------------------------- */
svg.icon {
    height: 35px;
    width: 35px;
    display: inline-block;
}

    svg.icon.check {
        width: 20px;
        height: 20px;
    }

h1 {
    font-size: 55px;
    font-weight: 500;
    margin: 0;
    line-height: 1em;
}

h2 {
    font-size: 28px;
    line-height: 1.3em;
}

ul {
    margin: 0;
}

.btn {
    font-size: 20px;
    background-color: #ffffff;
    color: #a71273;
    font-weight: 700;
    border-radius: 5px;
    padding: 15px 40px;
}

    .btn:hover:not([disabled]) { /* new aout*/
        background-color: #a71273;
        color: #ffffff;
    }

    .btn.pink {
        background-color: #a71273;
        color: #ffffff;
        border: 2px solid #a71273;
    }

        .btn.pink:hover {
            background-color: #ffffff;
            color: #a71273;
        }

    /* Button clicked state */
    .btn-clicked,
    .btn.btn-clicked {
        background-color: #808080 !important;
        color: #ffffff !important;
        border-color: #808080 !important;
    }
    
    /* new aout */
    .btn.little {
        font-size: 16px;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

input:not([type='radio']):not([type='checkbox']),
textarea {
    border: 1px solid #a71273;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}

    input:not([type='radio']):not([type='checkbox']).little {
        width: 100%;
    }

/* Field container styles for form field width control */
.field {
    position: relative;
    width: 100%;
}

.field.little {
    width: 49%;
}

.field.full-width {
    width: 100%;
}

input[type='radio'] {
    accent-color: #a71273;
}

input[type='submit'] {
    min-width: 125px;
    width: auto !important;
    margin-top: 20px;
}

    input[type='submit']:not(:disabled) {
        background-color: #a71273;
        color: #fff;
        cursor: pointer;
    }

        input[type='submit']:not(:disabled):hover {
            background-color: #ffffff;
            color: #a71273;
        }

    input[type="submit"]:disabled {
        border-color: transparent;
        background-color: rgba(167, 18, 115, 0.2);
        cursor: not-allowed;
        min-width: 125px;
        width: auto !important;
        margin-top: 20px;
    }

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
    width: 100%;
    text-align: left;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

    .custom-checkbox input[type="checkbox"] {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

    .custom-checkbox .box {
        width: 100%;
        height: 100%;
        border: 1px solid #a71273;
        border-radius: 4px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s, background 0.2s;
    }

    .custom-checkbox svg {
        width: 16px;
        height: 16px;
        display: none;
    }

    .custom-checkbox input:checked + .box {
        background: #a71273;
    }

        .custom-checkbox input:checked + .box svg {
            display: block;
            fill: white;
        }

.checkbox-text {
    flex: 1;
    color: #000;
}

    .checkbox-text a {
        text-decoration: underline;
        color: #000;
    }

.captcha {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.field.captcha-field {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.error-message {
    color: #EF4444;
    font-size: 12px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: block;
    min-height: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #a6a6a6;
    gap: 12px;
    width: 50%;
    margin-top: 30px;
}

.breadcrumb-step {
    white-space: nowrap;
    width: 140px;
}

.breadcrumb-separator + .breadcrumb-step {
    text-align: center;
}

.breadcrumb-step:last-child {
    text-align: left;
}

.breadcrumb-separator {
    flex: 1;
    border-top: 1px dashed #a6a6a6;
    height: 1px;
    max-width: 100px;
    margin: 0 8px;
}

.breadcrumb-step.active {
    color: #000;
    font-weight: bold;
}
/* new aout end*/
header {
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    top: 0;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

    header .page-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 15px;
        margin: 0; /* new aout */
    }

    header .menu {
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    header .burger-menu {
        display: none;
    }

    header .menu a {
        margin: 0 15px;
        position: relative;
    }

        header .menu a .wording-mobile {
            display: none;
        }

        header .menu a:after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #a71273;
            transition: transform 0.25s ease-out;
            transform-origin: bottom center;
        }

        header .menu a:last-child:after {
            display: none;
        }

        header .menu a.active:after,
        header .menu a:hover:after {
            transform: scaleX(1);
        }

        header .menu a.icon {
            color: #a71273;
            margin-right: 0;
        }

            header .menu a.icon:hover {
                color: #192A6B;
            }

.page-content {
    margin-top: 75px; /*Header height*/ /* new aout */
}
    /* new sept */
    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 262px); /*262px = header height + footer height */
    }
/* new sept end */

.section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5%;
    flex-flow: wrap;
}

    .section .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 45%;
    }

    .section h2 {
        color: #05183d;
        margin-bottom: 40px;
    }

    .section.framed h2 {
        font-size: 35px;
    }

    .section h2.pink {
        color: #a71273;
    }

    .section .image {
        overflow: hidden;
        width: 50%;
        display: flex;
        align-items: center;
    }

        .section .image img {
            border-radius: 20px;
        }

    .section .btn {
        margin: 30px auto 0;
    }

    .section.bgBlue {
        background: #0560BB;
        background: radial-gradient(circle,rgba(5, 96, 187, 1) 0%, rgba(25, 42, 107, 1) 50%, rgba(24, 11, 45, 1) 100%);
        color: #ffffff;
    }

        .section.bgBlue h2 {
            color: #ffffff;
        }

footer.section {
    flex-wrap: wrap;
    padding: 30px 5%;
    align-items: center;
}

footer .link-list a {
    color: #ffffff;
    margin-left: 50px;
    position: relative;
}

    footer .link-list a:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #ffffff;
        transition: transform 0.25s ease-out;
        transform-origin: bottom center;
    }

    footer .link-list a:hover:after {
        transform: scaleX(1);
    }

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

/* new aout */
/*@new*/
/*Popup style new aout : déplacé dans global (.popup, .popup-content, .close-popup) */

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    touch-action: none; /* Pour bloquer le scroll sur mobile aussi */
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 33, 107, 0.5);
    z-index: 1000;
    cursor: pointer;
}

.popup-content {
    position: relative;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 65%;
    border: 2px solid #a71273;
    border-radius: 50px;
    padding: 35px 50px;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px 2%;
}

.close-popup {
    position: absolute;
    font-size: 50px;
    cursor: pointer;
    z-index: 1;
    color: #000;
    right: 20px;
    top: 15px;
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.item-container.packages {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 0 25px;
}

    .item-container.packages .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #a71273;
        border-radius: 5px;
        padding: 10px;
        /* margin: 0 15px; */
        flex: 1;
    }

    .item-container.packages .item-title {
        color: #a71273;
        text-transform: uppercase;
        font-size: 22px;
        font-weight: 600;
    }

    .item-container.packages .item-subtitle {
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
    }

    .item-container.packages .item-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% + 40px);
        background-color: rgba(167, 18, 115, 0.2);
        padding: 10px 5px;
        margin: 15px 0;
        min-height: 60px;
    }

    .item-container.packages .price {
        font-weight: 700;
        font-size: 22px;
        line-height: 1;
        margin-bottom: 5px;
    }

    .item-container.packages .underprice {
        font-size: 12px;
        line-height: 1;
    }

    .item-container.packages .btn {
        white-space: nowrap;
        width: 100% !important;
    }

#popupPrices .notice {
    margin: 30px 0 15px;
    line-height: 1.4;
}

    #popupPrices .notice .bold {
        font-weight: 700;
        display: block;
    }

#popupPrices .btn {
    width: auto;
}
/* new aout end */
/* new ManageError */
#popupContact .popup-content { 
    width: 40%;
    gap: 0;
}
#popupContact .contact-form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 2%;
  text-align: left;
}
#popupContact .contact-form .btn {
  margin-top: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
}
/* new ManageError end */

/* ----------------------------- */
/* ==Login/Password Change Pages */
/* ----------------------------- */
.login,
.password-change,
.forgot-password {
    display: flex;
    justify-content: center;
    padding: 5%;
    min-height: calc(100vh - 300px);
}

.login .bgImage,
.password-change .bgImage,
.forgot-password .bgImage {
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
}

.login .content,
.password-change .content,
.forgot-password .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.login .signup-link {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.login .signup-link a {
    color: #a71273;
    text-decoration: none;
}

.login .signup-link a:hover {
    text-decoration: underline;
}

.login .login-form,
.password-change .password-form,
.forgot-password .forgot-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 15px;
    margin: 0 auto;
}

.login h2,
.password-change h2,
.forgot-password h2 {
    margin-bottom: 30px;
    color: #05183d;
    text-align: center;
}

.login .forgot-link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.login .forgot-link a {
    color: #a71273;
    text-decoration: none;
}

.login .forgot-link a:hover {
    text-decoration: underline;
}

.password-change .pwd-specs,
.forgot-password .pwd-specs {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 5px;
    text-align: center;
}

.password-change label,
.forgot-password label {
    display: block;
    width: 100%;
    font-weight: 600;
    margin-bottom: 5px;
    color: #05183d;
}

/*BreakPoint Desktop */
@media screen and (min-width: 1680px) {
    .section {
        align-items: center;
    }
    /* new aout */
    #popupPrices .popup-content {
        width: 50%;
        padding: 35px 100px;
    }
    /* new aout end */
    /* new ManageError */
    #popupContact .popup-content {
        width: 30%;
    }
    /* new ManageError end */
}
/*BreakPoint Tablet & Mobile */
@media screen and (max-width: 1365.98px) {
    /* new sept */
    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 319px); /*319px = header height + footer height */
    }
    /* new sept end */

    header .burger-menu {
        display: inline;
        color: #192A6B;
    }

    header .menu {
        position: absolute;
        right: 0;
        top: 73px;
        flex-direction: column;
        background-color: #ffffff;
        box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.3);
        display: none;
    }

        header .menu.active {
            display: flex;
        }

        header .menu a {
            margin: 0;
            padding: 10px 20px;
            width: 100%;
            font-weight: 700;
        }

            header .menu a.active {
                color: #a71273;
            }

            header .menu a:after,
            header .menu a .icon {
                display: none;
            }

            header .menu a .wording-mobile {
                display: inline;
                color: #192A6B;
            }

    h1 {
        font-size: 45px;
    }

    .section h2 {
        margin-bottom: 30px;
    }

    .section.framed h2 {
        font-size: 30px;
    }

    .section .image {
        width: 100%;
    }

    .section .content {
        width: 100%;
    }

    footer.section {
        justify-content: center;
    }

    footer .link-list {
        margin-top: 30px;
    }

        footer .link-list a {
            margin: 0 30px;
        }

            footer .link-list a:after {
                display: none;
            }
    /* new aout */
    .breadcrumb {
        width: 85%;
        margin: 15px 0 0;
    }

    .item-container.packages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 25px;
    }

        .item-container.packages .item {
            flex: none;
        }

    .popup-content {
        width: 95%;
    }
    /* new aout end */
    /* new ManageError */ 
    #popupContact .popup-content {  
        width: 95%;
    }
    /* new ManageError end */ 

    /* Login/Password Change responsive */
    .login,
    .password-change,
    .forgot-password {
        padding-left: 15px;
        padding-right: 15px;
    }

    .login .bgImage,
    .password-change .bgImage,
    .forgot-password .bgImage {
        height: 30vh;
    }
}

/* new sept */
/*BreakPoint Tablet big */
@media screen and (min-width: 820px) and (max-width: 1024px) {
    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 269px); /*269px = header height + footer height */
    }
}
/* new sept end */

/*BreakPoint Tablet*/
@media screen and (min-width: 768px) and (max-width: 1365.98px) {
    /* new aout */
    #popupPrices .popup-content {
        padding: 35px 10px;
    }

    #popupPrices .item-container {
        justify-content: center;
    }
    /* new aout end */
    /* new ManageError */ 
    #popupContact .popup-content {
        width: 70%;
    }
    /* new ManageError end */ 

    /* Login/Password Change tablet layout */
    .login,
    .password-change,
    .forgot-password {
        flex-direction: column;
        align-items: center;
    }

    .login .bgImage,
    .login .content,
    .password-change .bgImage,
    .password-change .content,
    .forgot-password .bgImage,
    .forgot-password .content {
        width: 100%;
    }

    .login .login-form,
    .password-change .password-form,
    .forgot-password .forgot-form {
        max-width: 100%;
    }
}

/*BreakPoint Mobile*/
@media screen and (max-width: 767.98px) {
    /* new sept */
    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 433px); /*433px = header height + footer height */
    }
    /* new sept end */

    h1 {
        font-size: 35px;
    }
    /* new aout */
    h2 {
        font-size: 24px;
    }

    input[name='email'],
    input[name='phone'] {
        width: 100% !important;
    }
    
    /* Make field.little full width on mobile */
    .field.little {
        width: 100% !important;
    }
    /* new aout end*/
    .section {
        padding: 10% 5%;
    }

    footer .link-list {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        footer .link-list a {
            margin: 0;
            padding: 10px 0;
        }

    /* new aout */
    .popup-content {
        width: 95%;
        padding: 15px 10px;
    }

    #popupPrices h2 {
        margin-bottom: 15px;
    }

    #popupPrices .item-container {
        flex-wrap: wrap;
        justify-content: space-around;
    }

        #popupPrices .item-container .item {
            padding: 10px 5px;
            width: 45%;
        }

            #popupPrices .item-container .item:nth-last-child(-n+2) {
                margin-bottom: 0;
            }

        #popupPrices .item-container .item-price {
            width: calc(100% + 25px);
        }

    #popupPrices .notice {
        margin: 10px 0;
        font-size: 15px;
    }

    .item-container.packages .item {
        flex: none;
    }

    .breadcrumb {
        gap: 6px;
        width: 100%;
    }

    .breadcrumb-step {
        width: 30%;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
    }

    .breadcrumb-separator {
        border: none;
        width: auto;
        height: auto;
        font-size: 20px;
        color: #a7a7a7;
    }

    .breadcrumb-step:last-child {
        text-align: center;
    }

    .breadcrumb-separator::before {
        content: ">";
    }
    /* new aout end */

    /* Login/Password Change mobile layout */
    .login,
    .password-change,
    .forgot-password {
        padding: 15px;
        justify-content: flex-start;
    }

    .login .content,
    .password-change .content,
    .forgot-password .content {
        width: 100%;
        padding: 0;
    }

    .login h2,
    .password-change h2,
    .forgot-password h2 {
        margin-bottom: 15px;
    }

    .login .signup-link {
        text-align: center;
        margin-bottom: 15px;
    }

    .login .signup-link a {
        display: block;
    }

    .login .bgImage,
    .password-change .bgImage,
    .forgot-password .bgImage {
        display: none;
    }
}



/* new sept */
/*BreakPoint little Mobile*/
@media screen and (max-width: 540px) {

    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 393px); /*393px = header height + footer height */
    }

    footer .link-list {
        padding: 0 50px;
        margin-top: 15px;
    }

    footer .copyright {
        margin-top: 25px;
    }
}

/* new sept end */


/* new aout */

/*BreakPoint little Mobile*/
@media screen and (max-width: 375.98px) {
    .page-content.login,
    .page-content.signup {
        min-height: calc(100vh - 420px); /*460px = header height + footer height */
    }

    .item-container.packages .item {
        flex: 1;
    }

    .item-container.packages .item-subtitle {
        font-size: 12px;
    }
}
/* new aout end */

