
@font-face{
	font-family:'LamaSans';
	src:url('../fonts/LamaSans-Black.ttf') format('truetype');
	font-weight:900;
	font-style:normal;
	font-display:swap;
}
.ndsbfl-shell,
.ndsbfl-shell *{
	font-family:'LamaSans', Tahoma, Arial, sans-serif;
}
.ndsbfl-shell{
	--ndsbfl-shadow:0 24px 60px rgba(15,23,42,.08);
	--ndsbfl-radius:24px;
	--ndsbfl-muted:#64748b;
	max-width:960px;
	margin:0 auto;
	padding:24px;
	box-sizing:border-box;
}
.ndsbfl-card{
	background:var(--ndsbfl-surface);
	border:1px solid var(--ndsbfl-border);
	border-radius:var(--ndsbfl-radius);
	box-shadow:var(--ndsbfl-shadow);
	padding:32px;
}
.ndsbfl-header{
	margin-bottom:28px;
	text-align:center;
}
.ndsbfl-header h2{
	margin:0 0 10px;
	font-size:42px;
	line-height:1.1;
	color:var(--ndsbfl-accent);
	font-weight:900;
}
.ndsbfl-header p{
	margin:0;
	font-size:15px;
	color:var(--ndsbfl-muted);
}
.ndsbfl-alert{
	padding:14px 16px;
	border-radius:16px;
	margin-bottom:22px;
	font-size:14px;
	font-weight:900;
}
.ndsbfl-alert--success{
	background:#ecfdf5;
	color:#166534;
	border:1px solid #bbf7d0;
}
.ndsbfl-alert--error{
	background:#fef2f2;
	color:#991b1b;
	border:1px solid #fecaca;
}
.ndsbfl-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:18px;
}
.ndsbfl-field--full{
	grid-column:1 / -1;
}
.ndsbfl-field label{
	display:block;
	margin:0 0 8px;
	color:var(--ndsbfl-accent);
	font-weight:900;
	font-size:15px;
}
.ndsbfl-required{
	color:#dc2626;
	margin-right:4px;
}
.ndsbfl-control{
	position:relative;
}
.ndsbfl-control input,
.ndsbfl-control textarea{
	width:100%;
	box-sizing:border-box;
	border:1px solid var(--ndsbfl-border);
	background:#fff;
	border-radius:16px;
	padding:16px 52px 16px 16px;
	font-size:15px;
	color:#0f172a;
	outline:none;
	transition:border-color .2s ease, box-shadow .2s ease;
}
.ndsbfl-control textarea{
	min-height:120px;
	resize:vertical;
}
.ndsbfl-control input::placeholder,
.ndsbfl-control textarea::placeholder{
	color:#94a3b8;
}
.ndsbfl-control input:focus,
.ndsbfl-control textarea:focus{
	border-color:var(--ndsbfl-primary);
	box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.ndsbfl-icon{
	position:absolute;
	top:50%;
	right:16px;
	width:20px;
	height:20px;
	transform:translateY(-50%);
	color:#94a3b8;
	pointer-events:none;
}
.ndsbfl-control--textarea .ndsbfl-icon{
	top:18px;
	transform:none;
}
.ndsbfl-icon svg{
	display:block;
	width:20px;
	height:20px;
}
.ndsbfl-actions{
	margin-top:24px;
}
.ndsbfl-submit{
	width:100%;
	border:0;
	border-radius:18px;
	padding:17px 20px;
	background:linear-gradient(135deg,var(--ndsbfl-primary),#38bdf8);
	color:#fff;
	font-size:16px;
	font-weight:900;
	cursor:pointer;
	transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
	box-shadow:0 16px 30px rgba(37,99,235,.22);
}
.ndsbfl-submit:hover{
	transform:translateY(-1px);
}
.ndsbfl-submit:active{
	transform:translateY(0);
}
@media (max-width: 767px){
	.ndsbfl-shell{
		padding:14px;
	}
	.ndsbfl-card{
		padding:22px 16px;
		border-radius:20px;
	}
	.ndsbfl-header h2{
		font-size:28px;
	}
	.ndsbfl-grid{
		grid-template-columns:1fr;
		gap:16px;
	}
}
