/* Custom Elements - Login card */
.cel-login {
	display: flex;
	justify-content: center;
	padding: 24px 16px;
	box-sizing: border-box;
}
.cel-login * { box-sizing: border-box; }

.cel-card {
	width: 100%;
	max-width: 480px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
	padding: 36px 40px 40px;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #0f172a;
}
.cel-card--simple { padding: 32px; }

.cel-logo {
	display: block;
	max-width: 240px;
	max-height: 56px;
	width: auto;
	height: auto;
	margin: 0 auto 18px;
}

.cel-title {
	margin: 0 0 22px;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.cel-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.cel-tab {
	appearance: none;
	border: none;
	border-radius: 12px;
	padding: 12px 22px;
	font-size: 17px;
	font-weight: 700;
	color: #334155;
	background: #e9edf2;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.cel-tab:hover { background: #dfe5ec; }
.cel-tab.is-active {
	background: #2563eb;
	color: #fff;
}

.cel-desc {
	margin: 0 auto 22px;
	max-width: 380px;
	font-size: 15px;
	line-height: 1.5;
	color: #475569;
}

.cel-box {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 26px 22px;
	text-align: center;
}

.cel-label {
	display: block;
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: #1e293b;
}
.cel-box .cel-label:not(:first-child) { margin-top: 16px; }

.cel-input {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	font-size: 16px;
	color: #0f172a;
	background: #fff;
	text-align: center;
}
.cel-input::placeholder { color: #94a3b8; }
.cel-input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.cel-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 13px 26px;
	border: none;
	border-radius: 12px;
	background: #0f172a;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s, opacity .15s;
}
.cel-btn:hover { background: #1e293b; }
.cel-btn:disabled { opacity: .6; cursor: not-allowed; }

.cel-link {
	display: inline-block;
	margin: 16px 0 0 12px;
	background: none;
	border: none;
	color: #2563eb;
	font-size: 15px;
	cursor: pointer;
}
.cel-link:hover { text-decoration: underline; }

.cel-hint {
	margin: 14px 0 0;
	font-size: 13px;
	color: #64748b;
}

.cel-status {
	margin-top: 16px;
	min-height: 20px;
	font-size: 14px;
}
.cel-status.is-ok { color: #065f46; }
.cel-status.is-error { color: #b91c1c; }

.cel-already { font-size: 16px; margin: 0 0 14px; }

@media (max-width: 520px) {
	.cel-card { padding: 28px 22px 32px; }
	.cel-tab { padding: 10px 16px; font-size: 15px; }
}
