/* GewoonChatten (Arc) - styled login css
   - behoudt de bestaande structuur/classes
   - maakt het geheel moderner/strakker + responsive
*/

/* ---------- Base layout ---------- */
html,
body {
	height: 100%;
}

#login_wrap {
	width: 100%;
	height: 100%;
}

/* Achtergrond + nette dim/overlay */
#intro_top {
	width: 100%;
	height: 100%;
	z-index: 1;
	position: relative;

	background: #292929 url('images/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;

	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 14px;
}

/* Overlay + subtiele blur feeling */
#intro_top:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, rgba(0, 0, 0, .45), rgba(0, 0, 0, .78));
	z-index: 0;
}

#intro_top>.bcell_mid,
#intro_top>.btable,
#intro_top .bcell_mid {
	position: relative;
	z-index: 1;
}

/* ---------- Card ---------- */
#login_all {
	width: 860px;
	max-width: 96%;
	margin: 0 auto;

	border-radius: 22px;
	color: #fff;

	background: rgba(18, 18, 22, .72);
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 18px 70px rgba(0, 0, 0, .55);

	overflow: hidden;
	backdrop-filter: blur(10px);
}

/* Binnen padding (jouw pad30 blijft werken, maar dit maakt het netter) */
#login_all.pad30 {
	padding: 28px !important;
}

/* Logo */
#login_logo {
	height: 78px;
	width: auto;
	display: block;
	margin: 0 auto;

	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

/* Intro tekst */
.login_text {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}

.login_text p {
	margin: 0;
}

.login_text .text_xlarge {
	letter-spacing: .2px;
}

.login_text .text_med {
	opacity: .90;
	line-height: 1.45;
}

/* ---------- Buttons ---------- */
/* Zorg dat de knoppen mooi onder elkaar staan, center, met gap */
.centered_element.vpad15 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

/* Algemene knop look, zonder je bestaande classnames te breken */
#login_wrap .intro_login_btn,
#login_wrap .intro_guest_btn {
	width: min(420px, 100%);
	border-radius: 14px !important;
	padding: 12px 16px !important;

	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 14px 35px rgba(0, 0, 0, .35);

	transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

#login_wrap .intro_login_btn:hover,
#login_wrap .intro_guest_btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

#login_wrap .intro_login_btn:active,
#login_wrap .intro_guest_btn:active {
	transform: translateY(0px) scale(.995);
	filter: brightness(1.00);
}

/* Login knop (ok_btn bestaat al in je systeem, maar we geven ‘m Arc vibe) */
#login_wrap .intro_login_btn {
	background: linear-gradient(135deg, rgba(255, 122, 24, .95), rgba(255, 49, 109, .95)) !important;
	border-color: rgba(255, 255, 255, .14) !important;
}

/* Gast knop wat neutraler */
#login_wrap .intro_guest_btn {
	background: rgba(255, 255, 255, .08) !important;
}

/* ---------- Register block ---------- */
#login_wrap .tpad20 {
	margin-top: 10px;
	text-align: center;
}

#login_wrap .text_xsmall {
	opacity: .75;
}

#login_wrap .text_med.bold.bclick {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .10);
	transition: background .12s ease, transform .12s ease;
}

#login_wrap .text_med.bold.bclick:hover {
	background: rgba(255, 255, 255, .10);
	transform: translateY(-1px);
}

/* ---------- Language button (rechtsboven) ---------- */
#intro_lang {
	position: absolute;
	top: 18px;
	right: 18px;

	width: 44px;
	height: 44px;

	border-radius: 14px;
	background: rgba(0, 0, 0, .35);
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .35);

	display: flex;
	align-items: center;
	justify-content: center;

	transition: background .12s ease, transform .12s ease;
	z-index: 2;
}

#intro_lang:hover {
	background: rgba(0, 0, 0, .50);
	transform: translateY(-1px);
}

#intro_lang img.intro_lang {
	width: 22px;
	height: 22px;
	border-radius: 6px;
}

/* ---------- Section onderaan (SEO content) ---------- */
.section {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.section_content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.section_inside {
	margin: 0 auto;
}

@media screen and (max-width:1120px) {
	.section_inside {
		width: 96%;
	}
}

/* ---------- Mobile tweaks ---------- */
@media screen and (max-width: 520px) {
	#login_all.pad30 {
		padding: 20px !important;
	}

	#login_logo {
		height: 62px;
	}

	#intro_lang {
		top: 12px;
		right: 12px;
		width: 42px;
		height: 42px;
	}
}