.log-separator, .reg-separator {
    border-left: 1px solid var(--color-gray-medium);
    height: var(--full-width);
    position: relative;
    margin: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.log-separator .separator-circle, .reg-separator .separator-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C9CACE;
    position: absolute;
}

.log-separator .separator-circle span, .reg-separator .separator-circle span {
    font-weight: bold;
    color: var(--color-dark-gray);
}

.own-color-btn {
    /*SURCHAGE ESSENTIEL*/
    font-weight: var(--font-weight-medium) !important;
    background-color: var(--color-primary) !important;
}

.own-color-btn:hover {
    background-color: #e0a000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    /*SURCHAGE ESSENTIEL*/
    color: var(--color-black) !important;
}

.own-color-btn-snd {
    /*SURCHAGE ESSENTIEL*/
    background-color: var(--color-primary) !important;
}

.own-color-btn-snd:hover {
    background-color: #e0a000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    /*SURCHAGE ESSENTIEL*/
    color: var(--color-black) !important;
}



.label-st {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-small);
}


.forget-password a {
    color: var(--color-primary);
    text-decoration: none;
}

.reg-separator .separator-circle {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .mobile-hr {
        display: none;
    }

    .log-separator .separator-circle {
        transform: translateY(-50%);
        top: 50%;
    }
}

.register-or-login, .reg-or-log-head, .forget-pwd {
    max-width: 800px;
    margin: auto;
}

.reg-or-log-head {
    margin-top: var(--pms-20);
}

.title-login a, .title-register a {
    /*text-decoration: none !important;*/
    text-decoration: none;
    color: #4E4E4E;
}

@media (max-width: 768px) {
    .log-separator {
        text-align: center;
    }

    .mobile-hr {
        /*SURCHAGE ESSENTIEL*/
        margin-top: 40px !important;
    }


    .log-separator .separator-circle {
        transform: translateY(-32%);
    }
}

.divider-auth {
    margin-top: 5px;
    height: 2px;
    /*transition: background-color 0.3s ease;*/
    /*background-color: #C8C9CD;*/
}

.divider-on-login {
    background: linear-gradient(to right, orange 50%, #C8C9CD 50%);
}

.divider-on-register {
    background: linear-gradient(to right, #C8C9CD 50%, orange 50%);
}

.label-newsletter {
    display: inline-block;
    vertical-align: middle;
}

.checkbox-newsletter {
    width: var(--pms-20);
    height: var(--pms-20);
    display: inline-block;
    vertical-align: middle;
    margin-right: var(--pms-10);
}

.pro-field {
    display: none;
}

.custom-radio-group {
    display: flex;
    justify-content: space-between;
}

.custom-radio-group label {
    padding: 10px 40px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    background-color: var(--color-white);
    transition: background-color 0.3s, border-color 0.3s;
    font-weight: var(--font-weight-medium)
}

.custom-radio-group input[type="radio"] {
    display: none;
}

.custom-radio-group input[type="radio"]:checked + label {
    background-color: #ffe8a1;
    border-color: #ffc107;
}

.custom-radio-group label:hover {
    border-color: #ffc107;
}

.connexion-info {
    font-size: var(--font-size-small);
    color: var(--color-black);
}

.my-account-info {
    font-weight: var(--font-weight-medium);
}

.required-asterisk {
    color: #FDB525;
    font-weight: bold;
}

.auth-label {
    font-weight: var(--font-weight-semi-bold);
}

.separate-label {
    margin-top: 5px;
}

.forget-pwd-title {
    float: left;
    margin: var(--pms-10);
}

.forget-pwd {
    padding-bottom: var(--pms-10);
    color: #212529;
}

.icon-log-return {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
}

.icon-log-return i {
    font-size: 50px;
    color: #212529;
}


.icon-log-return a {
    text-decoration: none;
    color: #212529;
}

.link-reset {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.mandatory-warning {
    background-color: #fff4e6;
    color: #721c24;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mandatory-warning span {
    margin: var(--pms-5);
    font-size: 22px;
}

.mandatory-warning::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #dc3545;
    animation: underlineAnimation 0.6s ease-out forwards;
}

@keyframes underlineAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Barre de notification indiquant une connexion réussie */
#login-bar {
    background: rgba(40, 167, 69, 0.8);
    color: white;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 1s ease-in-out;
    height: 30px;
}

#login-bar .progress-bar {
    height: 100%;
    width: 0;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: width 2s ease;
}

#login-bar .progress-bar span {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}