.full-layout {
    min-height: 100vh;
    margin: 0;
    background: #f2f5f9;
    color: #1a2130;
}

.full-layout-main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: start;
}

.full-layout-panel {
    min-height: 100vh;
}

.full-layout-panel-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: unset;
    background:
        radial-gradient(circle at 18% 22%, rgba(227, 6, 19, 0.2), transparent 45%),
        radial-gradient(circle at 80% 78%, rgba(0, 119, 204, 0.22), transparent 48%),
        linear-gradient(160deg, #1a2e4a 0%, #253a57 55%, #1a2e4a 100%);
    color: #fff;
    padding: 3rem 3.4rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-layout-visual-content {
    max-width: 520px;
}

.full-layout-visual-content h2 {
    font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem);
    margin: 0 0 0.8rem;
}

.full-layout-visual-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    max-width: 44ch;
}

.full-layout-panel-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}

.full-layout-card-wrapper {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 18px 36px rgba(26, 46, 74, 0.14);
    padding: 1.75rem;
}

.full-layout-logo {
    max-height: 48px;
    width: auto;
}

@media (max-width: 991px) {
    .full-layout-main {
        grid-template-columns: 1fr;
    }

    .full-layout-panel-form {
        padding: 1.2rem;
    }

    .full-layout-card-wrapper {
        padding: 1.4rem;
    }
}

/* Password constraints list styling */
.full-layout-card-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-layout-card-wrapper ul > li[data-password-constraints-target] {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6a768a;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.full-layout-card-wrapper ul > li[data-password-constraints-target]::before {
    content: '○';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #d8dfeb;
}

.full-layout-card-wrapper ul > li[data-password-constraints-target].is-valid {
    color: #1a9a6a;
}

.full-layout-card-wrapper ul > li[data-password-constraints-target].is-valid::before {
    content: '✓';
    color: #1a9a6a;
    font-weight: 600;
}

/* Password visibility toggle */
.btn-toggle-password {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #6a768a;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	font-size: 1.2rem;
	line-height: 1;
	transition: color 0.2s ease;
}

.btn-toggle-password:hover,
.btn-toggle-password:focus-visible {
	color: #1a2e4a;
	outline: none;
}

.btn-toggle-password i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.btn-toggle-password .hidden {
	display: none !important;
}

.hidden {
    display: none !important;
}

/* Honeypot anti-bot — visuellement invisible mais présent dans le DOM */
.honeypot-row {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tab-size: 0 !important;
}


/* Optional helper: small link style used on auth pages for subtle calls-to-action */
.auth-small-link {
    color: var(--bs-secondary, #1a2e4a);
    text-decoration: underline dotted;
}
