@charset "utf-8";
:root {
    --sidebar-width: 16rem;
    --sidebar-gap: 0rem;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus {
    box-shadow: none!important;
    outline: none!important;
}
/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #0b0e18;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(245, 111, 69, 0.6);
    border-radius: 4px;
    border: 2px solid #0b0e18;
    transition: background-color 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #F56F45;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(245,111,69,0.6) #0b0e18;
}

*::-moz-scrollbar-thumb:hover {
    background-color: #F56F45;
}
/* FONTS */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Nunito SemiBold */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/nunito/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Nunito Bold */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/nunito/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Nunito ExtraBold */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/nunito/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* GLOBAL */
body, html {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    background-color: #071424;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    min-height: 100dvh;
}
body {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}
main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100dvh;
    transition: margin-left 0.28s cubic-bezier(.2,.9,.2,1);
    margin-left: 0;
    padding-top: 1rem;
    box-sizing: border-box;
}
body.main, main.centered {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}
body.main, main.page-centered {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
}
.conteneur-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: max-content;
}

.space-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* BUTTON */
.btn-global {
    padding: 0.55rem 1rem;
    font-size: 1rem;
    border-radius: 1.3rem;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
}

.btn-global:active {
    transform: scale(0.97);
}
.btn-global i {
    font-size: 1.125rem;
}
.btn-orange {
    background-color: #F56F45;
}
.btn-orange:hover {
    background-color: #e56139;
}

/* BOUTON POUR DESCENDRE MONTER DE LA PAGE */
/* BOUTONS SCROLL */
.scroll-controls {
    position: fixed;
    right: 1.0rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 3000;
}

.scroll-controls button {
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 50%;
    background-color: #040A12;
    border: 1px solid #0E1822;
    color: #F56F45;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.6);
    transition: background-color 0.2s, transform 0.15s, opacity 0.2s;
    opacity: 0;
    pointer-events: none;
}

.scroll-controls button i {
    font-size: 1rem;
}

.scroll-controls button:hover {
    background-color: #F56F45;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.scroll-controls button:active {
    transform: scale(0.92);
}

/* Visible */
.scroll-controls.show button {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 600px) {
    .scroll-controls {
        right: 0.7rem;
        bottom: 1rem;
    }
}

/* PAGE IDENTIFICATION */
.identification-logo {
    width: min(15rem, 60%);
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.identification-titre {
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    word-spacing: 0.2rem;
    text-align: center;
}
.identification-titre,
.identification-input {
    width: min(30rem, 90%);
    margin: 0 auto;
}
.identification-input {
    background-color: #040A12;
    padding: 0.75rem;
    border-radius: 1.3rem;
    color: #E6ECF1;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1rem;
    margin-top: 1rem;
    border: 0.125rem solid #0E1822;
    transition: border-color 0.3s ease;
}
.identification-input:focus {
    border-color: #032859;
}
.identification-input::placeholder {
    color: #7A8A99;
    opacity: 1;
}
.identification-cartouche {
    background-color: #F56F45;
    color: #ffffff;
    padding: 0.20rem 0.40rem;
    border-radius: 0.6rem;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    word-spacing: 0;
    line-height: 1;
}

.space-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.notification-message {
    background-color: #040A12;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: red;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.1rem;
    margin: 0.5rem 0;
    border: 0.125rem solid #0E1822;
}

.notification-message-green {
    background-color: #040A12;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: green;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.1rem;
    margin: 0.5rem 0;
    border: 0.125rem solid #0E1822;
}