/* ===== GLOBAL ===== */

body.page-login {
	background: #f6f8fb;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===== CONTAINER ===== */
.bp-wrapper{
	/*max-width: 1400px;*/
	width:100%;
	margin: 60px auto;
	padding: 0 40px;
}

.bp-auth {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 0 40px;
}

/* ===== CARD ===== */

.bp-col {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.06);
	transition: 0.2s ease;
}

.bp-col:hover {
	/*transform: translateY(-2px);*/
}

/* ===== TITRES ===== */
.bp-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 40px;
	color: #1d2327;
}

.bp-col h2 {
	font-size: 24px;
	margin-bottom: 25px;
	color: #1d2327;
}

/* ===== INPUTS ===== */

.bp-auth input[type="text"],
.bp-auth input[type="date"],
.bp-auth input[type="email"],
.bp-auth input[type="password"],
.bp-auth select,
.bp-auth textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #e2e6ea;
	border-radius: 10px;
	margin-bottom: 15px;
	font-size: 14px;
	background: #f9fafb;
	transition: 0.2s;
}

.bp-auth input:focus,
.bp-auth select:focus {
	border-color: #0073aa;
	background: #ffffff;
	outline: none;
}

/* ===== CHECKBOX ===== */
.bp-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.4;
}

/* checkbox bien positionnée */
.bp-checkbox input[type="checkbox"] {
	margin-top: 4px;
	flex-shrink: 0;
	width:auto;
}

/* texte */
.bp-checkbox span {
	display: block;
}

/* ===== BOUTONS ===== */

.bp-auth button {
	width: 100%;
	padding: 15px;
	/*background: linear-gradient(135deg, #0073aa, #005177);*/
	background-color: #dc3545;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: 0.2s ease;
}

.bp-auth button:hover {
	transform: translateY(-1px);
	filter: brightness(0.95);
}

/* ===== LIENS ===== */

.bp-auth a {
	color: #0073aa;
	text-decoration: none;
	font-size: 14px;
}
.bp-auth small a {
	font-size: 12px;
	color: #0073aa;
}

.bp-auth a:hover {
	text-decoration: underline;
}

/* ===== PETITS TEXTES ===== */

.bp-auth p {
	font-size: 13px;
	color: #666;
}

/* ===== SÉPARATION VISUELLE ===== */

.bp-col:first-child {
	position: relative;
}

.bp-col:first-child::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 10%;
	height: 80%;
	width: 1px;
	background: #e5e7eb;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
	.bp-auth {
		grid-template-columns: 1fr;
		margin: 40px auto;
	}

	.bp-col:first-child::after {
		display: none;
	}
}