/* ===== Fluent Path branding for Tutor LMS ===== */

/* brand colors: pink primary, navy text */
:root {
	--tutor-color-primary: #ff395d;
	--tutor-color-primary-hover: #e82d50;
	--tutor-color-primary-rgb: 255, 57, 93;
}

/* typography: DM Sans everywhere in Tutor UI */
.tutor-dashboard,
.tutor-dashboard input,
.tutor-dashboard button,
.tutor-dashboard select,
.tutor-dashboard textarea,
.tutor-course-details-page,
.tutor-course-single-content-wrapper {
	font-family: 'DM Sans', Arial, Helvetica, sans-serif !important;
}

/* headings in navy */
.tutor-dashboard h1,
.tutor-dashboard h2,
.tutor-dashboard h3,
.tutor-dashboard h4 {
	color: #13223b;
}

/* hide student stat cards (Enrolled / Active / Completed / Time Spent) */
.tutor-student-dashboard-stats {
	display: none !important;
}

/* sidebar: active item in brand pink tint */
.tutor-dashboard-sidebar .tutor-dashboard-menu-item.is-active,
.tutor-dashboard-sidebar .tutor-dashboard-menu-item.active,
.tutor-dashboard-sidebar a.is-active {
	background: rgba(255, 57, 93, 0.08) !important;
	color: #e82d50 !important;
}

/* ===== Program hub (dashboard home), SaaS layout ===== */

/* tło strefy tresci w kremie marki */
.tutor-dashboard-content, .tutor-dashboard-main { background: #f7f5f2; }

/* sidebar wylaczony, layout na pelna szerokosc */
.tutor-dashboard-layout { display: block; }
.tutor-dashboard-main { width: 100%; }
.fpt-header-logo { display: inline-block; }
.fpt-header-logo img { height: 40px; width: auto; display: block; }
.tutor-dashboard-body { max-width: 1120px; margin: 0 auto; }

.fpt-hub { max-width: 1060px; margin: 0 auto; }
/* dashboard i course home maja te sama szerokosc robocza */
body.tutor-screen-frontend-dashboard .tutor-dashboard-page { max-width: 1060px !important; }
.fpt-hub-head { text-align: center; }
.fpt-hub-head { margin: 4px 0 28px; }
.fpt-hub-welcome {
	font-size: 28px;
	font-weight: 800;
	color: #13223b;
	letter-spacing: -0.02em;
	margin: 0 0 6px;
}
.fpt-hub-tagline { font-size: 15px; color: #6b7280; margin: 0; }

/* --- featured program --- */
.fpt-featured {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: #ffffff;
	border: 1px solid rgba(19, 34, 59, 0.08);
	border-radius: 22px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(19, 34, 59, 0.05), 0 24px 56px -22px rgba(19, 34, 59, 0.22);
	transition: transform .15s ease, box-shadow .15s ease;
	margin-bottom: 36px;
}
.fpt-featured:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(19, 34, 59, 0.07), 0 32px 64px -22px rgba(19, 34, 59, 0.3);
}
.fpt-featured-cover {
	min-height: 260px;
	background-size: cover;
	background-position: center;
	background-color: #13223b;
}
.fpt-featured-body {
	padding: 34px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}
.fpt-chip {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #e82d50;
	background: rgba(255, 57, 93, 0.08);
	border-radius: 100px;
	padding: 6px 14px;
}
.fpt-featured-name {
	font-size: 26px;
	font-weight: 800;
	color: #13223b;
	letter-spacing: -0.01em;
	margin: 0;
}
@media (max-width: 767px) {
	.fpt-featured { grid-template-columns: 1fr; }
	.fpt-featured-cover { aspect-ratio: 16/9; min-height: 0; }
	.fpt-featured-body { padding: 22px; }
}

/* --- progress --- */
.fpt-progress-row { display: flex; align-items: center; gap: 12px; }
.fpt-program-progress {
	flex: 1;
	height: 7px;
	background: #edeef2;
	border-radius: 100px;
	overflow: hidden;
}
.fpt-program-progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #ff5372, #ff395d);
	border-radius: 100px;
}
.fpt-progress-num { font-size: 13px; font-weight: 700; color: #13223b; }
.fpt-program-meta { font-size: 13px; color: #6b7280; }

/* --- buttons --- */
.fpt-program-btn {
	display: inline-block;
	align-self: flex-start;
	background: #ff395d;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 24px;
	border-radius: 100px;
	box-shadow: 0 10px 22px -8px rgba(255, 57, 93, 0.5);
	transition: background .15s ease;
}
.fpt-featured:hover .fpt-program-btn,
.fpt-program-card:hover .fpt-program-btn { background: #e82d50; }

/* --- pozostale programy --- */
.fpt-more-title {
	font-size: 16px;
	font-weight: 700;
	color: #13223b;
	margin: 0 0 16px;
}
.fpt-programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 320px);
	justify-content: center;
	gap: 24px;
}
@media (max-width: 380px) {
	.fpt-programs-grid { grid-template-columns: 1fr; }
}
.fpt-program-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(19, 34, 59, 0.08);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(19, 34, 59, 0.05), 0 18px 40px -18px rgba(19, 34, 59, 0.16);
	transition: transform .15s ease, box-shadow .15s ease;
}
.fpt-program-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(19, 34, 59, 0.07), 0 26px 52px -18px rgba(19, 34, 59, 0.24);
}
.fpt-program-cover {
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-color: #13223b;
}
.fpt-program-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; }
.fpt-program-name { font-size: 17px; font-weight: 700; color: #13223b; margin: 0; }
.fpt-program-card .fpt-program-btn { font-size: 14px; padding: 10px 20px; }

/* ===== Learning area: brandowy progress i mobilny drawer ===== */
.tutor-progress-bar { background: rgba(19, 34, 59, 0.08) !important; }
.tutor-progress-bar-fill { background: linear-gradient(90deg, #ff5d7a 0%, #ff395d 100%) !important; }
.tutor-learning-header-title { font-family: 'DM Sans', sans-serif; font-weight: 700; color: #13223b; letter-spacing: -0.01em; }

@media (max-width: 1023px) {
	.tutor-learning-header {
		background: rgba(255, 255, 255, 0.92);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid rgba(19, 34, 59, 0.07);
	}
}

/* ===== Course home (strona kursu dla zapisanych) ===== */
.fpt-course-home {
	max-width: 1060px;
	margin: 0 auto;
	padding: 16px 24px 36px;
	font-family: 'DM Sans', sans-serif;
}
/* ===== Jedno tlo na calej platformie (kanon: #fafafa jak dashboard) ===== */
body.single-courses,
body.single-courses #page,
body.single-courses .site-content,
body.single-courses .ast-container,
body.single-lesson,
body.single-lesson #page,
body.tutor-screen-frontend-dashboard,
body.tutor-screen-frontend-dashboard #page {
	background: #fafafa !important;
}
/* kazda warstwa-wrapper na platformie maluje #fafafa, zadnych bezowych przebic */
body.tutor-screen-frontend-dashboard #content,
body.tutor-screen-frontend-dashboard .site-content,
body.tutor-screen-frontend-dashboard .content-area,
body.tutor-screen-frontend-dashboard .ast-container,
body.tutor-screen-frontend-dashboard .site,
body.tutor-screen-frontend-dashboard .tutor-dashboard,
body.tutor-screen-frontend-dashboard .tutor-dashboard-layout,
body.tutor-screen-frontend-dashboard .tutor-dashboard-body,
body.single-courses #content,
body.single-courses .site-content,
body.single-courses .content-area,
body.single-courses .site,
body.single-lesson #content,
body.single-lesson .site-content,
body.single-lesson .site {
	background: #fafafa !important;
}
/* biale kontenery-artykuly Astry na stronach platformy: na przezroczysto */
body.single-courses .ast-article-single,
body.single-courses .site-main,
body.single-courses .ast-separate-container .ast-article-single,
body.single-lesson .ast-article-single,
body.single-lesson .site-main,
body.tutor-screen-frontend-dashboard .ast-article-single,
body.tutor-screen-frontend-dashboard .site-main {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	padding-top: 0;
	padding-bottom: 0;
}
.fpt-course-wrap { width: 100%; min-width: 0; background: #fafafa; min-height: 100vh; }
/* navbar 1:1 z dashboardem Tutora */
.fpt-ch-topbar {
	position: sticky;
	top: 0;
	z-index: 70;
	background: #fafafa;
	padding: 16px;
}
body.admin-bar .fpt-ch-topbar { top: 32px; }
.fpt-ch-topbar-inner {
	max-width: 1060px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tutor-dashboard-header-inner { max-width: 1060px !important; }
.fpt-ch-logo { height: 40px; width: auto; display: block; }
.fpt-ch-user { position: relative; }
.fpt-ch-user-btn { background: none; border: 0; padding: 2px; cursor: pointer; border-radius: 50%; display: block; }
.fpt-ch-user-btn:hover, .fpt-ch-user-btn[aria-expanded="true"] { box-shadow: 0 0 0 3px rgba(255, 57, 93, 0.22); }
/* fallback stylu avatara, gdyby CSS Tutora nie zaladowal sie na tej stronie */
.fpt-ch-user .tutor-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #e4ebfc;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #13223b;
	font-weight: 700;
	font-size: 14px;
	overflow: hidden;
}
.fpt-ch-user .tutor-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.fpt-ch-user-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	background: #ffffff;
	border: 1px solid rgba(19, 34, 59, 0.08);
	border-radius: 14px;
	box-shadow: 0 18px 44px -16px rgba(19, 34, 59, 0.32);
	width: 280px;
	padding: 8px;
	z-index: 60;
}
.fpt-ch-user-head {
	background: #f4f5fa;
	border-radius: 10px;
	padding: 18px 14px 16px;
	text-align: center;
	margin-bottom: 6px;
}
.fpt-ch-user-head .tutor-avatar { margin: 0 auto 10px; width: 48px; height: 48px; }
.fpt-ch-user-switch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
	padding: 9px 12px;
	border-radius: 8px;
	background: rgba(62, 100, 222, 0.12);
	color: #3e64de;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}
.fpt-ch-user-switch:hover { background: rgba(62, 100, 222, 0.2); color: #3e64de; }
.fpt-ch-user-switch svg { flex: none; }
.fpt-ch-user-name { color: #13223b; font-size: 16px; font-weight: 700; }
.fpt-ch-user-mail { color: #6b7280; font-size: 13px; margin-top: 2px; overflow-wrap: anywhere; }
.fpt-ch-user-items a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #13223b;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
.fpt-ch-user-items a svg { color: #6b7280; flex: none; }
.fpt-ch-user-items a:hover { background: rgba(19, 34, 59, 0.05); color: #ff395d; }
.fpt-ch-user-items a:hover svg { color: #ff395d; }
.fpt-ch-user-items a.is-logout { border-top: 1px solid rgba(19, 34, 59, 0.08); border-radius: 0 0 8px 8px; margin-top: 4px; padding-top: 12px; }
.fpt-ch-hero { text-align: center; margin: 20px 0 30px; }
.fpt-ch-eyebrow {
	color: #ff395d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.fpt-ch-title { color: #13223b; font-size: 34px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 18px; }
.fpt-ch-progress-row { display: flex; align-items: center; gap: 12px; max-width: 380px; margin: 0 auto 6px; }
.fpt-ch-progress { flex: 1; height: 8px; border-radius: 999px; background: rgba(19, 34, 59, 0.08); overflow: hidden; }
.fpt-ch-progress span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #ff5d7a, #ff395d); }
.fpt-ch-progress-num { color: #13223b; font-size: 13px; font-weight: 700; }
.fpt-ch-meta { color: #6b7280; font-size: 13px; margin-bottom: 22px; }
.fpt-ch-continue {
	display: inline-block;
	background: linear-gradient(180deg, #ff4d6e 0%, #ff395d 100%);
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 34px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 14px 26px -12px rgba(255, 57, 93, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fpt-ch-continue:hover {
	background: linear-gradient(180deg, #ff3f63 0%, #e82d50 100%);
	transform: translateY(-2px);
	box-shadow: 0 18px 32px -12px rgba(255, 57, 93, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.fpt-course-home .fpt-dash-footer { margin-top: 40px; padding-bottom: 0; }
.fpt-ch-sections { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 860px) {
	.fpt-ch-sections { grid-template-columns: 1fr 1fr; }
}
.fpt-ch-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: #ffffff;
	border: 1px solid rgba(19, 34, 59, 0.08);
	border-radius: 16px;
	padding: 18px 20px;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(19, 34, 59, 0.04), 0 14px 30px -18px rgba(19, 34, 59, 0.12);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.fpt-ch-section:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 57, 93, 0.35);
	box-shadow: 0 4px 10px rgba(19, 34, 59, 0.06), 0 20px 40px -18px rgba(19, 34, 59, 0.2);
}
.fpt-ch-section-title { color: #13223b; font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.fpt-ch-section-meta { color: #6b7280; font-size: 13px; }
.fpt-ch-section-side { display: flex; align-items: center; gap: 12px; flex: none; }
.fpt-ch-section-count {
	color: #13223b;
	font-size: 12px;
	font-weight: 700;
	background: rgba(19, 34, 59, 0.06);
	border-radius: 999px;
	padding: 4px 10px;
}
.fpt-ch-section-done {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #22a06b;
	color: #fff;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fpt-ch-section-arrow { color: rgba(19, 34, 59, 0.35); font-size: 22px; line-height: 1; }
.fpt-ch-section:hover .fpt-ch-section-arrow { color: #ff395d; }
@media (max-width: 480px) {
	.fpt-ch-title { font-size: 27px; }
}

/* ===== Pasek "next live session" w sidebarze kursu ===== */
.fpt-live-side {
	margin: 8px 12px 14px;
	padding: 16px;
	background:
		radial-gradient(130% 150% at 0% 0%, rgba(255, 57, 93, 0.25), transparent 55%),
		linear-gradient(135deg, #182a47 0%, #101c31 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px -16px rgba(19, 34, 59, 0.55);
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.fpt-live-side-head { display: flex; align-items: center; gap: 9px; margin-bottom: 3px; }
.fpt-live-side-eyebrow {
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.fpt-live-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ff395d;
	flex: none;
	animation: fpt-live-pulse 1.6s ease-out infinite;
}
@keyframes fpt-live-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 57, 93, 0.55); }
	100% { box-shadow: 0 0 0 10px rgba(255, 57, 93, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.fpt-live-dot { animation: none; }
}
.fpt-live-side-when { color: #ffffff; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.fpt-live-side-sub { color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.fpt-live-side-btn {
	display: block;
	text-align: center;
	background: linear-gradient(180deg, #ff4d6e 0%, #ff395d 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 16px;
	border-radius: 999px;
	text-decoration: none;
	margin-top: 10px;
	box-shadow: 0 10px 20px -10px rgba(255, 57, 93, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.fpt-live-side-btn:hover {
	background: linear-gradient(180deg, #ff3f63 0%, #e82d50 100%);
	transform: translateY(-1px);
	box-shadow: 0 14px 24px -10px rgba(255, 57, 93, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* ===== Learning area: chowamy menu "More" (Announcements / Course Info) ===== */
.tutor-learning-sidebar-pages { display: none !important; }

/* ===== Footer (jak na landing page) ===== */
.fpt-dash-footer {
	background: transparent;
	padding: 44px 24px 34px;
	text-align: center;
}
.fpt-dash-footer-logo {
	height: 40px;
	width: auto;
	display: block;
	margin: 0 auto 20px;
}
.fpt-dash-footer-links {
	display: flex;
	gap: 26px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.fpt-dash-footer-links a {
	color: #13223b;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.15s;
}
.fpt-dash-footer-links a:hover { color: #ff395d; }
.fpt-dash-footer p { font-size: 12px; color: #6b7280; margin: 0; }

/* ===== Kompresja pionu: footer ma byc above the fold ===== */
.tutor-dashboard-page { padding-bottom: 40px !important; }
.tutor-dashboard-body { padding-top: 32px; }
.fpt-hub-head { margin: 0 0 18px; }
.fpt-hub-welcome { font-size: 25px; margin-bottom: 4px; }
.fpt-hub-tagline { font-size: 14px; }
.fpt-program-body { padding: 14px 18px 16px; gap: 8px; }
.fpt-program-card .fpt-program-btn { padding: 9px 18px; }
.fpt-dash-footer { padding: 18px 24px 22px; }
.fpt-dash-footer-logo { height: 30px; margin: 0 auto 12px; }
.fpt-dash-footer-links { gap: 20px; margin-bottom: 8px; }

/* ===== Sticky footer: layout wypelnia ekran, footer na dolnej krawedzi ===== */
body.tutor-screen-frontend-dashboard {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
body.tutor-screen-frontend-dashboard.admin-bar { min-height: calc(100vh - 32px); }
body.tutor-screen-frontend-dashboard .tutor-dashboard-layout {
	min-height: 0 !important;
	flex: 1;
}

/* ===== Strona logowania ===== */
.fpt-login-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 26px;
	padding: 32px 16px;
	background:
		linear-gradient(180deg, rgba(250, 248, 244, 0.82) 0%, rgba(247, 245, 242, 0.86) 100%),
		url('login-bg.jpg') 62% 68% / cover no-repeat;
}
.fpt-login-logo img { height: 54px; width: auto; display: block; }
.fpt-login-card {
	width: 100%;
	max-width: 500px;
	background: #ffffff;
	border: 1px solid rgba(19, 34, 59, 0.08);
	border-radius: 22px;
	padding: 38px 38px 34px;
	box-shadow: 0 2px 8px rgba(19, 34, 59, 0.05), 0 30px 60px -24px rgba(19, 34, 59, 0.25);
}
.fpt-login-title {
	font-size: 27px;
	font-weight: 800;
	color: #13223b;
	letter-spacing: -0.01em;
	margin: 0 0 6px;
	text-align: center;
}
.fpt-login-sub {
	font-size: 14px;
	color: #6b7280;
	margin: 0 0 26px;
	text-align: center;
}
.fpt-login-foot { font-size: 12px; color: #9ca3af; margin: 0; }

/* pola formularza */
.fpt-login-card input[type="text"],
.fpt-login-card input[type="password"],
.fpt-login-card input[type="email"] {
	background: #ffffff !important;
	border: 1px solid #dcd7cd !important;
	border-radius: 12px !important;
	padding: 13px 16px !important;
	font-size: 15px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.fpt-login-card input[type="text"]:focus,
.fpt-login-card input[type="password"]:focus,
.fpt-login-card input[type="email"]:focus {
	border-color: #ff395d !important;
	box-shadow: 0 0 0 3px rgba(255, 57, 93, 0.12) !important;
	outline: none;
}

/* przycisk logowania */
.fpt-login-card button[type="submit"],
.fpt-login-card .tutor-btn-primary {
	background: linear-gradient(135deg, #ff5372, #e62348) !important;
	border: none !important;
	border-radius: 100px !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	padding: 13px 20px !important;
	box-shadow: 0 12px 26px -10px rgba(255, 57, 93, 0.55);
	transition: filter .15s ease;
}
.fpt-login-card button[type="submit"]:hover,
.fpt-login-card .tutor-btn-primary:hover { filter: brightness(0.95); }

/* linki i checkbox */
.fpt-login-card a { color: #ff395d; }
.fpt-login-card input[type="checkbox"] { accent-color: #ff395d; }

/* login: fixed overlay na caly viewport (niezalezny od kontenerow motywu,
   przykrywa tez header Astry na mobile) */
.fpt-login-page {
	position: fixed;
	inset: 0;
	z-index: 99998;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}
.fpt-login-card .tutor-input-wrapper { display: flex; align-items: center; }
.fpt-login-card .tutor-label { margin: 0 14px 0 8px; }

/* ===== Animowany border karty logowania (double-background, bez masek) ===== */
@property --fpt-angle {
	syntax: '<angle>';
	initial-value: 0deg;
	inherits: false;
}
.fpt-login-card {
	border: 2px solid transparent !important;
	background:
		linear-gradient(#ffffff, #ffffff) padding-box,
		conic-gradient(
			from var(--fpt-angle),
			rgba(19, 34, 59, 0.10) 0deg,
			rgba(19, 34, 59, 0.10) 120deg,
			#ff8da1 160deg,
			#ff395d 180deg,
			#ff8da1 200deg,
			rgba(19, 34, 59, 0.10) 240deg,
			rgba(19, 34, 59, 0.10) 360deg
		) border-box !important;
	animation: fpt-border-spin 5s linear infinite;
}
@keyframes fpt-border-spin {
	to { --fpt-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
	.fpt-login-card { animation: none; }
}
