*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0B1A2F;
    color: #EBEBEB;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    position: relative;
    padding: 24px 16px 120px;
    gap: 32px;
}

/* --- Monogramme en arriere-plan --- */
.bg-monogramme {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vmin;
    height: 85vmin;
    background-image: url('../img/monogramme-onarp.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* --- Canvas smoke --- */
#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* --- Conteneur principal --- */
.auth-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Insigne --- */
.auth-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
    animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Titre --- */
.auth-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #EBEBEB;
    margin-bottom: 4px;
    text-align: center;
}

.auth-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #EBEBEB;
    margin-bottom: 36px;
    text-align: center;
    white-space: nowrap;
}

.auth-subtitle--block {
    white-space: normal;
    margin-bottom: 24px;
}

.btn-login--link {
    text-align: center;
    text-decoration: none;
    display: block;
}

/* --- Formulaire --- */
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #EBEBEB;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(235, 235, 235, 0.4);
}

.form-group input:hover {
    border-color: rgba(235, 235, 235, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(235, 235, 235, 0.05);
}

.form-group input:focus {
    border-color: rgba(235, 235, 235, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(235, 235, 235, 0.1);
}

/* --- Bouton --- */
.btn-login {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background: linear-gradient(135deg, #1A3050, #0F2240);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #243D58, #1A3050);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-login:active {
    transform: scale(0.98);
}

.btn-login:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* --- Message d'erreur --- */
.auth-error {
    width: 100%;
    padding: 12px 16px;
    background: rgba(220, 60, 60, 0.12);
    border: 1px solid rgba(220, 60, 60, 0.25);
    border-radius: 8px;
    color: #E8A0A0;
    font-size: 13px;
    text-align: center;
    display: none;
    animation: shakeIn 0.35s ease-out;
}

.auth-error.visible {
    display: block;
}

@keyframes shakeIn {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* --- Spinner dans le bouton --- */
.btn-login .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #EBEBEB;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Etat connecte --- */
.auth-welcome {
    text-align: center;
    margin-bottom: 32px;
    animation: logoFadeIn 0.6s ease-out;
}

.welcome-name {
    font-size: 20px;
    font-weight: 600;
    color: #EBEBEB;
    margin-bottom: 6px;
}

.welcome-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6B9F8A;
    margin-bottom: 4px;
}

.welcome-email {
    font-size: 13px;
    color: rgba(235, 235, 235, 0.5);
}

.auth-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-tool {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1A3050, #0F2240);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.25s, box-shadow 0.25s;
}

.btn-tool:hover {
    background: linear-gradient(135deg, #243D58, #1A3050);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* --- Actions connecte --- */
.auth-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-account {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(235, 235, 235, 0.12);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.btn-account:hover {
    background: rgba(235, 235, 235, 0.05);
    border-color: rgba(235, 235, 235, 0.2);
}

/* --- Modal Mon compte --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-overlay.visible {
    display: flex;
}

.modal-account {
    position: relative;
    background: #122640;
    border: 1px solid rgba(235, 235, 235, 0.08);
    border-radius: 12px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 420px;
    margin: 16px;
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(235, 235, 235, 0.04);
    border: 1px solid rgba(235, 235, 235, 0.08);
    border-radius: 50%;
    color: rgba(235, 235, 235, 0.4);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #EBEBEB;
    background: rgba(200, 60, 60, 0.15);
    border-color: rgba(200, 60, 60, 0.35);
    transform: rotate(180deg);
    box-shadow: 0 0 12px rgba(200, 60, 60, 0.15);
}

.modal-close:active {
    transform: rotate(180deg) scale(0.8);
    background: rgba(200, 60, 60, 0.25);
    transition: transform 0.1s, background 0.1s;
}

.modal-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EBEBEB;
    margin-bottom: 24px;
    text-align: center;
}

.modal-desc {
    font-size: 12px;
    color: rgba(235, 235, 235, 0.55);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.forgot-link {
    text-align: center;
    margin-top: 16px;
}

/* --- CTA Rejoindre l'Alliance --- */
.join-cta {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 720px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.join-cta:hover {
    background: rgba(196, 152, 62, 0.14);
    border-color: rgba(212, 169, 78, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 169, 78, 0.1);
}

.join-cta-text {
    flex: 1;
    text-align: left;
}

.join-cta-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A94E;
    margin-bottom: 8px;
}

.join-cta-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(235, 235, 235, 0.7);
    margin: 0;
}

.join-cta-btn {
    display: inline-block;
    flex-shrink: 0;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(212, 169, 78, 0.5);
    border-radius: 6px;
    color: #D4A94E;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.join-cta-btn:hover {
    background: linear-gradient(135deg, #D4A94E, #C4983E);
    color: #0B1A2F;
    border-color: #C4983E;
    box-shadow: 0 4px 16px rgba(196, 152, 62, 0.3);
}

.modal-field {
    margin-bottom: 16px;
}

.modal-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(235, 235, 235, 0.6);
    margin-bottom: 6px;
}

.modal-field input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.modal-field input::placeholder {
    color: rgba(235, 235, 235, 0.3);
}

.modal-field input:hover {
    border-color: rgba(235, 235, 235, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.modal-field input:focus {
    border-color: rgba(235, 235, 235, 0.35);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(235, 235, 235, 0.08);
}

.account-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 16px;
    display: none;
}

.account-msg--ok {
    background: rgba(107, 159, 138, 0.12);
    border: 1px solid rgba(107, 159, 138, 0.25);
    color: #6B9F8A;
}

.account-msg--err {
    background: rgba(220, 60, 60, 0.12);
    border: 1px solid rgba(220, 60, 60, 0.25);
    color: #E8A0A0;
}

.btn-admin {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1A3050, #0F2240);
    border: 1px solid rgba(235, 235, 235, 0.12);
    border-radius: 8px;
    color: #EBEBEB;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.btn-admin:hover {
    background: linear-gradient(135deg, #243D58, #1A3050);
    border-color: rgba(235, 235, 235, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-logout {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(235, 235, 235, 0.45);
    font-size: 13px;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-logout:hover {
    color: #E8A0A0;
    border-color: rgba(220, 60, 60, 0.25);
}

/* --- Suppression de compte --- */
.auth-delete-zone {
    width: 100%;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(235, 235, 235, 0.06);
}

.btn-delete-account {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(200, 60, 60, 0.15);
    border-radius: 8px;
    color: rgba(200, 60, 60, 0.5);
    font-size: 11px;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.btn-delete-account:hover {
    color: #E8A0A0;
    border-color: rgba(200, 60, 60, 0.35);
    background: rgba(200, 60, 60, 0.06);
}

.delete-account-warning {
    background: rgba(200, 60, 60, 0.08);
    border: 1px solid rgba(200, 60, 60, 0.15);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.delete-account-warning p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(235, 235, 235, 0.65);
    margin-bottom: 8px;
}

.delete-account-warning p:last-child {
    margin-bottom: 0;
}

.delete-account-warning strong {
    color: #E8A0A0;
}

.btn-login--danger {
    background: linear-gradient(135deg, #6B2020, #4A1515);
    border-color: rgba(200, 60, 60, 0.25);
}

.btn-login--danger:hover {
    background: linear-gradient(135deg, #7D2828, #5A1A1A);
    box-shadow: 0 4px 16px rgba(200, 60, 60, 0.2);
}

/* --- Footer --- */
.auth-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 24px 16px;
    text-align: center;
    z-index: 20;
    background: linear-gradient(180deg, rgba(11, 26, 47, 0) 0%, rgba(11, 26, 47, 0.95) 30%, #0B1A2F 100%);
    pointer-events: none;
}

.auth-footer > * {
    pointer-events: auto;
}

/* --- Reseaux sociaux footer --- */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: rgba(235, 235, 235, 0.45);
    background: transparent;
    transition: color 0.25s, background 0.25s, transform 0.25s;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.social-link:hover,
.social-link:focus-visible {
    color: #EBEBEB;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
    outline: none;
}

.footer-credits {
    font-size: 11px;
    color: rgba(235, 235, 235, 0.3);
    margin-bottom: 10px;
}

.footer-credits a {
    color: rgba(235, 235, 235, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-credits a:hover {
    color: #EBEBEB;
}

.footer-legal {
    font-size: 11px;
}

.footer-link {
    background: none;
    border: none;
    color: rgba(235, 235, 235, 0.35);
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #EBEBEB;
}

.footer-sep {
    color: rgba(235, 235, 235, 0.15);
    margin: 0 6px;
}

/* --- Modal Legal --- */
.modal-legal {
    position: relative;
    background: #122640;
    border: 1px solid rgba(235, 235, 235, 0.08);
    border-radius: 12px;
    padding: 0;
    width: 100%;
    max-width: 620px;
    max-height: 85vh;
    margin: 16px;
    display: flex;
    flex-direction: column;
    animation: modalIn 0.25s ease-out;
}

.legal-tabs {
    display: flex;
    border-bottom: 1px solid rgba(235, 235, 235, 0.06);
    padding: 0 48px 0 0;
}

.legal-tab {
    flex: 1;
    padding: 16px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(235, 235, 235, 0.4);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.legal-tab:hover {
    color: rgba(235, 235, 235, 0.7);
}

.legal-tab.active {
    color: #EBEBEB;
    border-bottom-color: #EBEBEB;
}

.legal-content {
    padding: 28px 32px;
    overflow-y: auto;
    flex: 1;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(235, 235, 235, 0.75);
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #EBEBEB;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.legal-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #EBEBEB;
    margin-top: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.legal-content p {
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 8px 0 12px 20px;
}

.legal-content li {
    margin-bottom: 4px;
}

.legal-content a {
    color: rgba(235, 235, 235, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #EBEBEB;
}

.legal-content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.tab-hidden {
    display: none;
}

.legal-update {
    margin-top: 24px;
    font-size: 11px;
    color: rgba(235, 235, 235, 0.3);
    font-style: italic;
}

/* --- Variantes utilitaires --- */
.modal-title--danger {
    color: #C83C3C;
}

.auth-error.activate-success {
    background: rgba(107, 159, 138, 0.12);
    border: 1px solid rgba(107, 159, 138, 0.25);
    color: #6B9F8A;
    animation: none;
}

.activate-hint {
    font-size: 11px;
    color: rgba(235, 235, 235, 0.4);
    margin-top: 4px;
}

/* --- Responsive: tablette --- */
@media (max-width: 768px) {
    .modal-legal {
        max-width: 95vw;
        max-height: 90vh;
    }

    .legal-content {
        padding: 24px 20px;
    }

    .legal-tabs {
        padding: 0 44px 0 0;
    }

    .modal-account {
        max-width: 95vw;
    }
}

/* --- Responsive: tablette (sous-titre wrap) --- */
@media (max-width: 680px) {
    .auth-subtitle {
        white-space: normal;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* --- CTA Rejoindre : empile mobile/tablette --- */
@media (max-width: 620px) {
    .join-cta {
        flex-direction: column;
        gap: 18px;
        padding: 22px 20px;
        text-align: center;
    }

    .join-cta-text {
        text-align: center;
    }

    .join-cta-title {
        font-size: 13px;
        letter-spacing: 2.5px;
    }

    .join-cta-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .join-cta-btn {
        display: block;
        width: 100%;
        padding: 14px 20px;
    }
}

/* --- Responsive: mobile --- */
@media (max-width: 480px) {
    body {
        padding-bottom: 0;
        align-items: flex-start;
        padding-top: 32px;
    }

    .auth-container {
        padding: 0 20px;
    }

    .auth-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 10px;
    }

    .auth-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .auth-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .bg-monogramme {
        width: 110vmin;
        height: 110vmin;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-login {
        padding: 12px;
        font-size: 13px;
    }

    .welcome-name {
        font-size: 18px;
    }

    .auth-footer {
        position: relative;
        padding: 24px 16px 16px;
        margin-top: 32px;
    }

    .footer-credits {
        font-size: 10px;
        line-height: 1.6;
    }

    .footer-link {
        font-size: 10px;
    }

    .modal-overlay {
        align-items: flex-start;
        padding: 16px 0;
        overflow-y: auto;
    }

    .modal-account {
        padding: 28px 20px 24px;
        margin: 0 12px;
        max-height: none;
    }

    .modal-field input {
        font-size: 16px;
    }

    .modal-legal {
        max-width: calc(100vw - 16px);
        max-height: calc(100vh - 32px);
        margin: 0 8px;
        border-radius: 10px;
    }

    .legal-tabs {
        padding: 0 40px 0 0;
        flex-shrink: 0;
    }

    .legal-tab {
        padding: 14px 6px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .legal-content {
        padding: 20px 16px;
        font-size: 13px;
    }

    .legal-content h3 {
        font-size: 15px;
    }

    .legal-content h4 {
        font-size: 13px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .auth-delete-zone {
        margin-top: 24px;
        padding-top: 20px;
    }

    .delete-account-warning {
        padding: 12px;
    }

    .delete-account-warning p {
        font-size: 11px;
    }

    .activate-hint {
        font-size: 10px;
    }
}
