* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100vh;
}

/* Police de base pour le corps */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark);
}

.pbb-container-lg {
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 24px;
}

.pbb-container-md {
    width: 100%;
    max-width: 948px;
    margin: 0 auto;
    padding: 0 24px;
}

/* En-têtes */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.text-small {
    font-size: 10px;
}

.text-medium {
    font-weight: 500;
}

/* Liens */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.pbb-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    cursor: pointer;
    display: inline-block;
    padding: 0 20px;
    min-height: 48px;
    border-radius: 16px;
    font-weight: 600;
    transition: all ease-in 100ms;
    -webkit-transition: all ease-in 100ms;

}

.pbb-button.primary {
    background-color: var(--green);
    color: var(--white);
}

.pbb-button.primary:hover {
    background-color: var(--green-darker);
}

.pbb-button.primary:disabled {
    background-color: var(--grey-200);
    color: #999;
    cursor: not-allowed;
}

.pbb-button.secondary {
    background-color: var(--grey-100);
    color: var(--dark);
}

.pbb-button.secondary:hover {
    background-color: var(--grey-200);
}

.pbb-button.terciary {
    background-color: var(--white);
    color: var(--dark);
}

.pbb-button.terciary:hover {
    background-color: var(--grey-100);
}

.pbb-button.lg {
    font-size: 20px;
    min-height: 72px;
    padding: 0 32px;
}

/* Flex */
.d-flex {
    display: flex;
}

.d-column {
    flex-direction: column;
}

.d-row {
    flex-direction: row;
}

.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Colors */
:root {
    --dark: #363834;
    --bitcoin-orange: #F2A900;
    --green: #42660F;
    --green-darker: #314C0B;
    --white: #fff;
    --dark-blue: #0032A0;
    --grey-100: #F8F8F9;
    --grey-200: #E9E9EC;
    --cloud: #EFEFFE;
    --red: #DD4040;
  }

/* Header */
.pbb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    width: 100%;
    background-color: var(--white);
    z-index: 50;
    border-bottom: 1px solid #DFDFDF;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.pbb-header-logo {
    width: 120px;
    height: auto;
}

.pbb-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 120px;
}

.pbb-header-nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 150ms ease;
}

.pbb-header-nav a:hover {
    color: var(--bitcoin-orange);
}

.pbb-header-nav-cta {
    background-color: var(--bitcoin-orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    transition: background-color 150ms ease;
}

.pbb-header-nav-cta:hover {
    background-color: #d99400 !important;
    color: var(--white) !important;
}

.pbb-header-flags {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.pbb-header-flags p {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

/* Forms */
.pbb-form-group {
    display: flex;
    flex-direction: column;
}

.pbb-form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.pbb-form-group input {
    all: unset;
    height: 48px;
    background-color: var(--grey-100);
    border-radius: 8px;
    padding: 0 16px;
    border: 2px solid transparent;
    font-size: 16px;
    transition: all ease-in 100ms;
    -webkit-transition: all ease-in 100ms;
}

.pbb-form-group input.is-error {
    border-color: var(--red);
}

.pbb-form-group input:focus {
    border: 2px solid var(--dark);
    background-color: var(--white);
}

.pbb-input-caption-error {
    color: var(--red);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

/* Alert */
.alert {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 24px;
    font-size: 14px;
    align-items: flex-start;
}

.alert-info {
    background-color: var(--cloud);
}

#bande_horizontale{
    position: fixed;
    top: 0;
    color: white;
    z-index: 51;
    text-align: center;
    margin: 0;
    border: none;
    width: 100%;
    height: 20px;
    background-color: #FEB201;
}