/* ========================================
   myClass - Main Stylesheet
======================================== */

:root {
	--primary-color: #4f46e5;
	--secondary-color: #06b6d4;
	--accent-color: #f59e0b;

	--text-color: #1f2937;
	--muted-color: #6b7280;

	--background-color: #f5f7fb;
	--white: #ffffff;

	--border-radius: 16px;
	--container-width: 1200px;
}

/* =========================
   Global
========================= */

body {
	background: var(--background-color);
	color: var(--text-color);
}

/* =========================
   Container
========================= */

.container {
	width: min(100% - 40px, var(--container-width));
	margin-inline: auto;
}

/* =========================
   Header
========================= */

.site-header {
	background: var(--white);
	padding: 20px 0;
}

/* =========================
   Main
========================= */

.home-page {
	min-height: 70vh;
}

/* =========================
   Footer
========================= */

.site-footer {
	margin-top: 60px;
	padding: 30px 0;
	background: #111827;
	color: #ffffff;
	text-align: center;
}

/* ========================================
   myClass Header
======================================== */

.site-header {
	position: relative;
	z-index: 1000;

	width: 100%;

	background: #ffffff;

	border-bottom: 1px solid #e9edf5;

	box-shadow: 0 4px 20px rgba(30, 41, 59, 0.04);
}

/* =========================
   Header Inner
========================= */

.header-inner {
	min-height: 82px;

	display: flex;
	align-items: center;

	gap: 35px;
}

/* =========================
   Branding
========================= */

.site-branding {
	flex-shrink: 0;
}

.site-logo {
	display: flex;
	align-items: center;

	gap: 11px;

	color: #26324a;

	font-size: 20px;
	font-weight: 800;

	white-space: nowrap;
}

.site-logo:hover {
	color: var(--primary-color);
}

/* Logo Icon */

.logo-icon {
	width: 46px;
	height: 46px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 14px;

	background: #eef2ff;

	font-size: 24px;

	box-shadow: 0 5px 12px rgba(79, 70, 229, 0.12);
}

/* =========================
   Navigation
========================= */

.main-navigation {
	margin-inline-start: auto;
}

.main-menu {
	display: flex;
	align-items: center;

	gap: 4px;

	list-style: none;

	margin: 0;
	padding: 0;
}

/* Menu Item */

.main-menu-item {
	position: relative;
}

/* Menu Link */

.main-menu-link {
	display: flex;
	align-items: center;

	padding: 9px 13px;

	border-radius: 11px;

	color: #475569;

	font-size: 14px;
	font-weight: 600;

	transition: background-color 0.2s ease,
	color 0.2s ease,
	transform 0.2s ease;
}

/* Hover */

.main-menu-link:hover {
	background: #f1f5ff;

	color: var(--primary-color);

	transform: translateY(-1px);
}

/* =========================
   Mobile Button
========================= */

.menu-toggle {
	display: none;

	width: 44px;
	height: 44px;

	border: 0;

	border-radius: 12px;

	background: #f1f5ff;

	color: var(--primary-color);

	font-size: 23px;

	cursor: pointer;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

	.header-inner {
		min-height: 72px;
	}

	.main-navigation {
		display: none;
	}

	.menu-toggle {
		display: flex;

		align-items: center;
		justify-content: center;

		margin-inline-start: auto;
	}

}

/* ========================================
   Home Page
======================================== */

/* =========================
   Hero
========================= */

.hero-section {
	padding: 70px 0;

	background: linear-gradient(
			135deg,
			#eef2ff 0%,
			#f8fbff 50%,
			#ecfeff 100%
	);

	overflow: hidden;
}

.hero-inner {
	min-height: 380px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 60px;
}

.hero-content {
	max-width: 650px;
}

.hero-badge {
	display: inline-flex;

	padding: 7px 14px;

	margin-bottom: 18px;

	border-radius: 50px;

	background: #ffffff;

	color: var(--primary-color);

	font-size: 14px;
	font-weight: 700;

	box-shadow: 0 5px 20px rgba(30, 41, 59, 0.06);
}

.hero-content h1 {
	margin-bottom: 18px;

	color: #1e293b;

	font-size: clamp(32px, 5vw, 52px);

	line-height: 1.4;

	font-weight: 900;
}

.hero-content p {
	max-width: 580px;

	margin-bottom: 28px;

	color: #64748b;

	font-size: 17px;
}

/* =========================
   Hero Buttons
========================= */

.hero-actions {
	display: flex;

	align-items: center;

	gap: 12px;
}

.hero-button {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-height: 48px;

	padding: 0 22px;

	border-radius: 12px;

	font-size: 15px;
	font-weight: 700;

	transition: 0.2s ease;
}

.hero-button.primary {
	background: var(--primary-color);

	color: #ffffff;

	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.20);
}

.hero-button.primary:hover {
	transform: translateY(-2px);

	box-shadow: 0 12px 25px rgba(79, 70, 229, 0.25);
}

.hero-button.secondary {
	background: #ffffff;

	color: #475569;

	border: 1px solid #e2e8f0;
}

.hero-button.secondary:hover {
	background: #f8fafc;

	transform: translateY(-2px);
}

/* =========================
   Hero Illustration
========================= */

.hero-illustration {
	position: relative;

	width: 300px;
	height: 300px;

	flex-shrink: 0;

	display: flex;

	align-items: center;
	justify-content: center;
}

.hero-book {
	width: 190px;
	height: 190px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 50px;

	background: #ffffff;

	font-size: 95px;

	box-shadow: 0 25px 60px rgba(79, 70, 229, 0.12);

	transform: rotate(-5deg);
}

.hero-star {
	position: absolute;

	font-size: 30px;
}

.star-one {
	top: 25px;
	right: 25px;
}

.star-two {
	bottom: 30px;
	left: 20px;
}

/* =========================
   Section
========================= */

.quick-section,
.latest-section {
	padding: 80px 0;
}

.section-heading {
	margin-bottom: 35px;

	text-align: center;
}

.section-heading > span {
	display: block;

	margin-bottom: 8px;

	color: var(--primary-color);

	font-size: 14px;
	font-weight: 800;
}

.section-heading h2 {
	margin-bottom: 8px;

	color: #1e293b;

	font-size: 30px;

	font-weight: 900;
}

.section-heading p {
	color: #64748b;

	font-size: 15px;
}

/* ========================================
   Quick Access Cards
======================================== */

.quick-grid {
	display: grid;

	grid-template-columns:
        repeat(4, 1fr);

	gap: 20px;
}

.quick-card {
	position: relative;

	display: flex;

	flex-direction: column;

	align-items: flex-start;

	min-height: 220px;

	padding: 26px;

	background: #ffffff;

	border: 1px solid #edf0f5;

	border-radius: 22px;

	text-align: right;

	box-shadow: 0 8px 30px rgba(30, 41, 59, 0.04);

	overflow: hidden;

	transition: transform 0.25s ease,
	box-shadow 0.25s ease,
	border-color 0.25s ease;
}

.quick-card::before {
	content: "";

	position: absolute;

	top: 0;
	right: 0;

	width: 100%;
	height: 4px;

	background: var(--primary-color);

	opacity: 0;

	transition: 0.25s ease;
}

.quick-card:hover {
	transform: translateY(-6px);

	border-color: #e0e7ff;

	box-shadow: 0 18px 40px rgba(30, 41, 59, 0.09);
}

.quick-card:hover::before {
	opacity: 1;
}

/* Icon */

.quick-icon {
	width: 64px;
	height: 64px;

	display: flex;

	align-items: center;
	justify-content: center;

	margin-bottom: 22px;

	border-radius: 18px;

	background: #f1f5ff;

	font-size: 30px;
}

/* Title */

.quick-card h3 {
	margin: 0 0 7px;

	color: #1e293b;

	font-size: 18px;

	font-weight: 800;
}

/* Description */

.quick-card p {
	margin: 0;

	color: #64748b;

	font-size: 13px;

	line-height: 1.8;
}

/* Arrow */

.quick-arrow {
	position: absolute;

	left: 24px;
	bottom: 22px;

	width: 34px;
	height: 34px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: #f8fafc;

	color: var(--primary-color);

	font-size: 17px;

	transition: 0.2s ease;
}

.quick-card:hover .quick-arrow {
	background: var(--primary-color);

	color: #ffffff;

	transform: translateX(-3px);
}

/* Responsive */

@media (max-width: 1000px) {

	.quick-grid {
		grid-template-columns:
            repeat(2, 1fr);
	}

}

@media (max-width: 600px) {

	.quick-grid {
		grid-template-columns: 1fr;
	}

}

/* =========================
   Latest
========================= */

.latest-section {
	background: #f8fafc;
}

.empty-content {
	min-height: 180px;

	display: flex;

	flex-direction: column;

	align-items: center;
	justify-content: center;

	gap: 12px;

	background: #ffffff;

	border: 1px dashed #dbe2ea;

	border-radius: 20px;

	color: #64748b;
}

.empty-content span {
	font-size: 45px;
}

/* =========================
   Home Responsive
========================= */

@media (max-width: 900px) {

	.hero-inner {
		flex-direction: column;

		text-align: center;

		gap: 35px;
	}

	.hero-content {
		max-width: 700px;
	}

	.hero-content p {
		margin-inline: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.quick-grid {
		grid-template-columns:
            repeat(2, 1fr);
	}

}

@media (max-width: 600px) {

	.hero-section {
		padding: 50px 0;
	}

	.hero-content h1 {
		font-size: 32px;
	}

	.hero-content p {
		font-size: 15px;
	}

	.hero-illustration {
		width: 240px;
		height: 240px;
	}

	.hero-book {
		width: 150px;
		height: 150px;

		font-size: 75px;

		border-radius: 40px;
	}

	.quick-grid {
		grid-template-columns: 1fr;
	}

	.quick-section,
	.latest-section {
		padding: 60px 0;
	}

}

/* ========================================
   Header User
======================================== */

.header-user {
	display: flex;
	align-items: center;

	margin-inline-start: auto;
}

.login-button {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-width: 90px;
	height: 42px;

	padding: 0 18px;

	border-radius: 11px;

	background: var(--primary-color);

	color: #ffffff;

	font-size: 14px;
	font-weight: 700;

	transition: 0.2s ease;
}

.login-button:hover {
	color: #ffffff;

	transform: translateY(-2px);

	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.18);
}

/* ========================================
   Latest Posts
======================================== */

.latest-grid {
	display: grid;

	grid-template-columns:
        repeat(3, 1fr);

	gap: 24px;
}

/* =========================
   Card
========================= */

.latest-card {
	overflow: hidden;

	background: #ffffff;

	border: 1px solid #edf0f5;

	border-radius: 22px;

	box-shadow: 0 8px 30px rgba(30, 41, 59, 0.04);

	transition: transform 0.25s ease,
	box-shadow 0.25s ease;
}

.latest-card:hover {
	transform: translateY(-5px);

	box-shadow: 0 18px 40px rgba(30, 41, 59, 0.08);
}

/* =========================
   Image
========================= */

.latest-image {
	display: flex;

	width: 100%;
	height: 190px;

	align-items: center;
	justify-content: center;

	overflow: hidden;

	background: #eef2ff;
}

.latest-image img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.35s ease;
}

.latest-card:hover .latest-image img {
	transform: scale(1.05);
}

.latest-image-placeholder {
	font-size: 55px;
}

/* =========================
   Content
========================= */

.latest-content {
	padding: 22px;
}

.latest-date {
	margin-bottom: 8px;

	color: var(--primary-color);

	font-size: 12px;

	font-weight: 700;
}

.latest-content h3 {
	margin: 0 0 10px;

	font-size: 18px;

	line-height: 1.6;
}

.latest-content h3 a {
	color: #1e293b;
}

.latest-content h3 a:hover {
	color: var(--primary-color);
}

.latest-content p {
	margin: 0 0 18px;

	color: #64748b;

	font-size: 13px;

	line-height: 1.9;
}

/* =========================
   More
========================= */

.latest-more {
	display: inline-flex;

	align-items: center;

	gap: 7px;

	color: var(--primary-color);

	font-size: 13px;

	font-weight: 800;
}

.latest-more span {
	transition: transform 0.2s ease;
}

.latest-more:hover span {
	transform: translateX(-4px);
}

/* =========================
   Empty
========================= */

.latest-empty {
	grid-column: 1 / -1;

	min-height: 220px;

	display: flex;

	flex-direction: column;

	align-items: center;
	justify-content: center;

	padding: 30px;

	background: #ffffff;

	border: 1px dashed #dbe2ea;

	border-radius: 22px;

	text-align: center;
}

.latest-empty span {
	margin-bottom: 12px;

	font-size: 45px;
}

.latest-empty h3 {
	margin-bottom: 8px;

	color: #334155;

	font-size: 18px;
}

.latest-empty p {
	margin: 0;

	color: #64748b;

	font-size: 14px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

	.latest-grid {
		grid-template-columns:
            repeat(2, 1fr);
	}

}

@media (max-width: 600px) {

	.latest-grid {
		grid-template-columns: 1fr;
	}

}

/* ========================================
   Footer
======================================== */

.site-footer {
	margin-top: 0;

	background: #172033;

	color: #cbd5e1;
}

/* =========================
   Footer Inner
========================= */

.footer-inner {
	min-height: 190px;

	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 40px;
}

/* =========================
   Footer Brand
========================= */

.footer-brand {
	display: flex;

	flex-direction: column;

	gap: 12px;
}

.footer-logo {
	display: flex;

	align-items: center;

	gap: 10px;

	color: #ffffff;

	font-size: 18px;

	font-weight: 800;
}

.footer-logo-icon {
	width: 42px;
	height: 42px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 12px;

	background: rgba(255, 255, 255, 0.08);

	font-size: 22px;
}

.footer-brand p {
	margin: 0;

	color: #94a3b8;

	font-size: 13px;
}

/* =========================
   Footer Info
========================= */

.footer-info {
	text-align: left;

	color: #94a3b8;

	font-size: 13px;

	line-height: 2;
}

.footer-info p {
	margin: 0;
}

/* =========================
   Footer Bottom
========================= */

.footer-bottom {
	padding: 15px 0;

	background: rgba(0, 0, 0, 0.15);

	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
	margin: 0;

	text-align: center;

	color: #64748b;

	font-size: 12px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 600px) {

	.footer-inner {
		min-height: auto;

		padding-top: 45px;
		padding-bottom: 45px;

		flex-direction: column;

		align-items: center;

		text-align: center;
	}

	.footer-info {
		text-align: center;
	}

}

/* ========================================
   WordPress Pages
======================================== */

.site-page {
	min-height: 600px;

	padding: 65px 0;

	background: #f8fafc;
}

/* =========================
   Page Content
========================= */

.page-content {
	max-width: 1050px;

	margin: 0 auto;

	padding: 40px;

	background: #ffffff;

	border: 1px solid #edf0f5;

	border-radius: 24px;

	box-shadow: 0 8px 30px rgba(30, 41, 59, 0.04);
}

/* =========================
   Page Header
========================= */

.page-header {
	margin-bottom: 30px;

	padding-bottom: 22px;

	border-bottom: 1px solid #edf0f5;
}

.page-title {
	margin: 0;

	color: #1e293b;

	font-size: 32px;

	font-weight: 900;

	line-height: 1.5;
}

/* =========================
   Page Body
========================= */

.page-body {
	color: #475569;

	font-size: 16px;

	line-height: 2;
}

.page-body p {
	margin-bottom: 18px;
}

.page-body img {
	max-width: 100%;

	height: auto;

	border-radius: 14px;
}

/* Links */

.page-body a {
	color: var(--primary-color);

	text-decoration: underline;
}

/* Headings */

.page-body h2,
.page-body h3,
.page-body h4 {
	margin-top: 30px;

	margin-bottom: 15px;

	color: #1e293b;

	font-weight: 800;
}

/* Lists */

.page-body ul,
.page-body ol {
	margin-bottom: 20px;

	padding-right: 25px;
}

/* =========================
   WordPress Alignments
========================= */

.page-body .aligncenter {
	display: block;

	margin-right: auto;
	margin-left: auto;
}

.page-body .alignleft {
	float: left;

	margin-left: 20px;
}

.page-body .alignright {
	float: right;

	margin-right: 20px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 700px) {

	.site-page {
		padding: 40px 0;
	}

	.page-content {
		padding: 25px 20px;

		border-radius: 18px;
	}

	.page-title {
		font-size: 25px;
	}

	.page-body {
		font-size: 15px;
	}

}

/* ========================================
   myClass Plugin Content
======================================== */

.myclass-content {
	width: 100%;
}

/* =========================
   Tables
========================= */

.myclass-content table {
	width: 100%;

	border-collapse: collapse;

	background: #ffffff;

	border: 1px solid #e8edf3;

	border-radius: 16px;

	overflow: hidden;

	font-size: 14px;
}

.myclass-content th {
	padding: 14px 16px;

	background: #f5f7ff;

	color: #334155;

	font-weight: 800;

	text-align: right;

	border-bottom: 1px solid #e8edf3;
}

.myclass-content td {
	padding: 14px 16px;

	color: #475569;

	border-bottom: 1px solid #eef2f6;

	vertical-align: middle;
}

.myclass-content tr:last-child td {
	border-bottom: none;
}

.myclass-content tbody tr {
	transition: background 0.2s ease;
}

.myclass-content tbody tr:hover {
	background: #f8fafc;
}

/* =========================
   Buttons
========================= */

.myclass-content button,
.myclass-content input[type="submit"],
.myclass-content input[type="button"],
.myclass-content .button {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-height: 42px;

	padding: 0 18px;

	border: 0;

	border-radius: 10px;

	background: var(--primary-color);

	color: #ffffff;

	font-family: inherit;

	font-size: 14px;

	font-weight: 700;

	cursor: pointer;

	transition: 0.2s ease;
}

.myclass-content button:hover,
.myclass-content input[type="submit"]:hover,
.myclass-content input[type="button"]:hover,
.myclass-content .button:hover {
	transform: translateY(-1px);

	box-shadow: 0 7px 18px rgba(79, 70, 229, 0.18);
}

/* =========================
   Inputs
========================= */

.myclass-content input[type="text"],
.myclass-content input[type="number"],
.myclass-content input[type="email"],
.myclass-content input[type="password"],
.myclass-content select,
.myclass-content textarea {
	width: 100%;

	min-height: 44px;

	padding: 8px 12px;

	border: 1px solid #dbe2ea;

	border-radius: 10px;

	background: #ffffff;

	color: #334155;

	font-family: inherit;

	font-size: 14px;

	outline: none;

	transition: border-color 0.2s ease,
	box-shadow 0.2s ease;
}

.myclass-content input:focus,
.myclass-content select:focus,
.myclass-content textarea:focus {
	border-color: var(--primary-color);

	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

/* =========================
   Notice / Messages
========================= */

.myclass-content .notice,
.myclass-content .message,
.myclass-content .alert {
	padding: 14px 18px;

	margin-bottom: 20px;

	border-radius: 12px;

	background: #f1f5f9;

	color: #475569;

	font-size: 14px;
}

/* =========================
   Cards
========================= */

.myclass-content .card {
	padding: 22px;

	background: #ffffff;

	border: 1px solid #edf0f5;

	border-radius: 18px;

	box-shadow: 0 8px 25px rgba(30, 41, 59, 0.04);
}

/* =========================
   Mobile Tables
========================= */

@media (max-width: 700px) {

	.myclass-content {
		overflow-x: auto;
	}

	.myclass-content table {
		min-width: 600px;
	}

}

/* ========================================
   Students Stars
======================================== */

.students_stars {
	width: 100%;
}

/* =========================
   Title
========================= */

.students_stars h1 {
	margin: 0 0 30px;

	color: #1e293b;

	font-size: 30px;

	font-weight: 900;

	line-height: 1.6;
}

/* =========================
   Filter
========================= */

.students_stars .filter-box {
	display: flex;

	align-items: center;

	gap: 12px;

	margin-bottom: 25px;

	padding: 18px 20px;

	background: #f8fafc;

	border: 1px solid #e8edf3;

	border-radius: 16px;
}

.students_stars .filter-box label {
	color: #334155;

	font-size: 14px;

	font-weight: 800;

	white-space: nowrap;
}

.students_stars .filter-box select {
	width: auto;

	min-width: 180px;

	height: 42px;

	padding: 0 14px;

	border: 1px solid #dbe2ea;

	border-radius: 10px;

	background: #ffffff;

	color: #334155;

	font-family: inherit;

	font-size: 14px;

	outline: none;

	cursor: pointer;

	transition: 0.2s ease;
}

.students_stars .filter-box select:focus {
	border-color: var(--primary-color);

	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

/* =========================
   Table Wrapper
========================= */

.students_stars {
	overflow-x: auto;
}

/* =========================
   Table
========================= */

.students_stars_table {
	width: 100%;

	min-width: 750px;

	border-collapse: separate;

	border-spacing: 0;

	overflow: hidden;

	background: #ffffff;

	border: 1px solid #e8edf3;

	border-radius: 18px;

	box-shadow: 0 8px 30px rgba(30, 41, 59, 0.04);
}

/* Header */

.students_stars_table th {
	padding: 16px 14px;

	background: #f1f5ff;

	color: #334155;

	font-size: 14px;

	font-weight: 900;

	text-align: center;

	white-space: nowrap;

	border-bottom: 1px solid #e3e8f0;
}

/* Cells */

.students_stars_table td {
	padding: 15px 14px;

	color: #475569;

	font-size: 14px;

	text-align: center;

	border-bottom: 1px solid #eef2f6;

	vertical-align: middle;
}

/* Remove last border */

.students_stars_table tr:last-child td {
	border-bottom: none;
}

/* Hover */

.students_stars_table tbody tr,
.students_stars_table tr {
	transition: background 0.2s ease;
}

.students_stars_table tr:hover td {
	background: #fafbff;
}

/* =========================
   Name
========================= */

.students_stars_table td:nth-child(2) {
	color: #1e293b;

	font-weight: 800;
}

/* =========================
   Stars
========================= */

.students_stars_table .stars {
	direction: ltr;

	white-space: nowrap;
}

.students_stars_table .stars .fa-star {
	margin: 0 2px;

	color: #f5b82e;

	font-size: 17px;

	text-shadow: 0 2px 5px rgba(245, 184, 46, 0.2);
}

/* =========================
   Balance
========================= */

.students_stars_table td:nth-child(5) {
	direction: ltr;

	font-weight: 800;
}

/* =========================
   Mobile
========================= */

@media (max-width: 700px) {

	.students_stars h1 {
		font-size: 23px;

		margin-bottom: 22px;
	}

	.students_stars .filter-box {
		flex-direction: column;

		align-items: stretch;
	}

	.students_stars .filter-box select {
		width: 100%;
	}

}

/* ========================================
   Student Login
======================================== */

.student-login-page {
	position: relative;

	min-height: 720px;

	display: flex;

	align-items: center;

	overflow: hidden;

	padding: 70px 0;

	background: linear-gradient(
			135deg,
			#effcf5 0%,
			#f8fafc 55%,
			#eefbf6 100%
	);
}

/* Decorative shapes */

.login-background-shape {
	position: absolute;

	border-radius: 50%;

	pointer-events: none;
}

.login-shape-one {
	width: 420px;
	height: 420px;

	top: -220px;
	right: -120px;

	background: rgba(34, 197, 94, 0.10);
}

.login-shape-two {
	width: 320px;
	height: 320px;

	bottom: -180px;
	left: -100px;

	background: rgba(16, 185, 129, 0.08);
}

/* Main wrapper */

.student-login-wrapper {
	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
        1fr 470px;

	align-items: center;

	gap: 70px;

	max-width: 1100px;

	margin: 0 auto;
}

/* =========================
   Info
========================= */

.student-login-info {
	padding: 20px;
}

.login-info-icon {
	width: 72px;
	height: 72px;

	display: flex;

	align-items: center;
	justify-content: center;

	margin-bottom: 22px;

	border-radius: 22px;

	background: #dcfce7;

	font-size: 36px;
}

.login-small-title {
	display: inline-block;

	margin-bottom: 14px;

	color: #16a34a;

	font-size: 14px;

	font-weight: 800;
}

.student-login-info h1 {
	margin: 0 0 20px;

	color: #172033;

	font-size: 44px;

	font-weight: 900;

	line-height: 1.5;
}

.student-login-info h1 strong {
	display: block;

	color: #16a34a;
}

.student-login-info > p {
	max-width: 540px;

	margin: 0 0 30px;

	color: #64748b;

	font-size: 16px;

	line-height: 2;
}

/* Features */

.login-info-items {
	display: flex;

	flex-direction: column;

	gap: 14px;
}

.login-info-items > div {
	display: flex;

	align-items: center;

	gap: 12px;
}

.login-info-items span {
	width: 42px;
	height: 42px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 12px;

	background: #ffffff;

	box-shadow: 0 5px 18px rgba(30, 41, 59, 0.06);

	font-size: 20px;
}

.login-info-items p {
	margin: 0;

	color: #475569;

	font-size: 14px;

	font-weight: 700;
}

/* =========================
   Login Box
========================= */

.student-login-box {
	padding: 38px;

	background: #ffffff;

	border: 1px solid rgba(226, 232, 240, 0.8);

	border-radius: 28px;

	box-shadow: 0 25px 70px rgba(30, 41, 59, 0.10);
}

/* Header */

.login-box-header {
	margin-bottom: 28px;

	text-align: center;
}

.login-box-icon {
	width: 58px;
	height: 58px;

	display: flex;

	align-items: center;
	justify-content: center;

	margin: 0 auto 15px;

	border-radius: 17px;

	background: #ecfdf5;

	font-size: 27px;
}

.login-box-header h2 {
	margin: 0 0 7px;

	color: #172033;

	font-size: 24px;

	font-weight: 900;
}

.login-box-header p {
	margin: 0;

	color: #94a3b8;

	font-size: 13px;
}

/* =========================
   Fields
========================= */

.student-login-form {
	display: flex;

	flex-direction: column;

	gap: 20px;
}

.login-field label {
	display: block;

	margin-bottom: 8px;

	color: #334155;

	font-size: 13px;

	font-weight: 800;
}

.login-input-wrapper {
	position: relative;

	display: flex;

	align-items: center;
}

.login-input-icon {
	position: absolute;

	right: 14px;

	font-size: 17px;

	pointer-events: none;
}

.login-input-wrapper input {
	width: 100%;

	height: 52px;

	padding: 0 45px 0 45px;

	border: 1px solid #e2e8f0;

	border-radius: 13px;

	background: #f8fafc;

	color: #334155;

	font-family: inherit;

	font-size: 14px;

	outline: none;

	transition: border-color 0.2s ease,
	background 0.2s ease,
	box-shadow 0.2s ease;
}

.login-input-wrapper input:focus {
	border-color: #22c55e;

	background: #ffffff;

	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.login-input-wrapper input::placeholder {
	color: #a8b2c1;
}

/* Password button */

.password-toggle {
	position: absolute;

	left: 10px;

	width: 34px;
	height: 34px;

	display: flex;

	align-items: center;
	justify-content: center;

	padding: 0;

	border: 0;

	background: transparent;

	cursor: pointer;

	font-size: 17px;
}

/* =========================
   Login Button
========================= */

.student-login-button {
	width: 100%;

	height: 52px;

	margin-top: 5px;

	border: 0;

	border-radius: 13px;

	background: linear-gradient(
			135deg,
			#22c55e,
			#16a34a
	);

	color: #ffffff;

	font-family: inherit;

	font-size: 14px;

	font-weight: 900;

	cursor: pointer;

	transition: transform 0.2s ease,
	box-shadow 0.2s ease;
}

.student-login-button:hover {
	transform: translateY(-2px);

	box-shadow: 0 12px 25px rgba(22, 163, 74, 0.22);
}

/* =========================
   Messages
========================= */

.student-login-message {
	display: none;

	padding: 11px 14px;

	border-radius: 10px;

	font-size: 13px;

	line-height: 1.8;
}

.student-login-message.success {
	display: block;

	background: #ecfdf5;

	color: #15803d;
}

.student-login-message.error {
	display: block;

	background: #fef2f2;

	color: #dc2626;
}

/* =========================
   Back
========================= */

.login-back {
	display: block;

	margin-top: 22px;

	color: #94a3b8;

	font-size: 13px;

	font-weight: 700;

	text-align: center;
}

.login-back:hover {
	color: #16a34a;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

	.student-login-wrapper {
		grid-template-columns: 1fr;

		gap: 30px;

		max-width: 600px;
	}

	.student-login-info {
		text-align: center;
	}

	.login-info-icon {
		margin-right: auto;
		margin-left: auto;
	}

	.student-login-info > p {
		margin-right: auto;
		margin-left: auto;
	}

	.login-info-items {
		align-items: center;
	}

	.student-login-info h1 {
		font-size: 36px;
	}

}

@media (max-width: 550px) {

	.student-login-page {
		padding: 40px 0;
	}

	.student-login-box {
		padding: 27px 20px;

		border-radius: 22px;
	}

	.student-login-info h1 {
		font-size: 30px;
	}

	.student-login-info > p {
		font-size: 14px;
	}

}

/* ========================================
   Header User
======================================== */

.header-user {
	display: flex;

	align-items: center;

	gap: 9px;
}

.header-user-icon {
	width: 36px;
	height: 36px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: #ecfdf5;

	font-size: 17px;
}

.header-user-name {
	max-width: 150px;

	color: #334155;

	font-size: 13px;

	font-weight: 800;

	white-space: nowrap;

	overflow: hidden;

	text-overflow: ellipsis;
}

.header-logout {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-height: 36px;

	padding: 0 13px;

	border-radius: 9px;

	background: #fef2f2;

	color: #dc2626;

	font-size: 12px;

	font-weight: 800;

	text-decoration: none;

	transition: 0.2s ease;
}

.header-logout:hover {
	background: #fee2e2;

	color: #b91c1c;

	transform: translateY(-1px);
}

@media (max-width: 600px) {

	.header-user-name {
		display: none;
	}

}

/* ========================================
   Student Class Info
======================================== */

.student-class-info {
	display: flex;

	align-items: center;

	gap: 14px;

	margin-bottom: 25px;

	padding: 16px 20px;

	background: #ecfdf5;

	border: 1px solid #d1fae5;

	border-radius: 15px;
}

.student-class-icon {
	width: 45px;
	height: 45px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 12px;

	background: #ffffff;

	font-size: 21px;
}

.student-class-info div {
	display: flex;

	flex-direction: column;

	gap: 2px;
}

.student-class-info span {
	color: #64748b;

	font-size: 12px;
}

.student-class-info strong {
	color: #15803d;

	font-size: 15px;
}

/* ========================================
   Table Wrapper
======================================== */

.students-table-wrapper {
	width: 100%;

	overflow-x: auto;
}

/* ========================================
   Empty State
======================================== */

.myclass-empty-state {
	padding: 60px 20px;

	text-align: center;

	background: #f8fafc;

	border: 1px dashed #dbe2ea;

	border-radius: 18px;
}

.myclass-empty-state > div {
	margin-bottom: 12px;

	font-size: 40px;
}

.myclass-empty-state h3 {
	margin: 0 0 7px;

	color: #334155;

	font-size: 18px;
}

.myclass-empty-state p {
	margin: 0;

	color: #94a3b8;

	font-size: 13px;
}

/* ========================================
   Balance
======================================== */

.student-balance {
	direction: ltr;

	font-weight: 800;
}

/* =========================================================
   HEADER
========================================================= */

.myclass-header {

	width: 100%;

	position: relative;

	z-index: 1000;

	background: seagreen;

}

/* =========================================================
   HEADER INNER
========================================================= */

.myclass-header-inner {

	width: 100%;

	max-width: 1400px;

	min-height: 90px;

	margin: 0 auto;

	padding: 10px 30px;

	display: grid;

	grid-template-columns: 1fr auto 1fr;

	align-items: center;

	position: relative;

}

/* =========================================================
   BRAND
========================================================= */

.myclass-brand {

	grid-column: 1;

	justify-self: start;

	display: flex;

	align-items: center;

	gap: 10px;

	text-decoration: none;

}

.myclass-brand-icon {

	width: 42px;

	height: 42px;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 12px;

	background: #2563eb;

	color: #ffffff;

	font-size: 20px;

}

.myclass-brand-text {

	font-size: 18px;

	font-weight: 700;

	color: #1e293b;

	white-space: nowrap;

}

.myclass-brand:hover {

	text-decoration: none;

}

/* =========================================================
   MYCLASS CHILDREN HEADER
========================================================= */

.myclass-header {

	position: relative;

	width: 100%;

	background: linear-gradient(
			135deg,
			#2e9b62 0%,
			#38a96b 45%,
			#31985f 100%
	);

	box-shadow: 0 5px 20px rgba(20, 90, 55, .18);

	z-index: 1000;

	overflow: visible;

}

/* =========================================================
   Decorative background bubbles
========================================================= */

.myclass-header::before,
.myclass-header::after {

	content: "";

	position: absolute;

	border-radius: 50%;

	pointer-events: none;

	opacity: .16;

}

/* bubble left */

.myclass-header::before {

	width: 90px;

	height: 90px;

	background: #ffffff;

	left: 4%;

	top: -35px;

	box-shadow: 80px 55px 0 -20px rgba(255, 255, 255, .8),
	150px -15px 0 -30px rgba(255, 255, 255, .6);

	animation: headerBubbleFloat 6s ease-in-out infinite;

}

/* bubble right */

.myclass-header::after {

	width: 65px;

	height: 65px;

	background: #ffd166;

	right: 6%;

	bottom: -25px;

	box-shadow: -80px 20px 0 -18px #ffffff,
	-135px -20px 0 -25px #ff9fce;

	animation: headerBubbleFloat 5s ease-in-out infinite reverse;

}

/* =========================================================
   INNER
========================================================= */

.myclass-header-inner {

	position: relative;

	width: 100%;

	min-height: 92px;

	padding: 8px 45px;

	display: grid;

	grid-template-columns:
        1fr
        auto
        1fr;

	align-items: center;

	gap: 25px;

}

/* =========================================================
   Small decorative stars
========================================================= */

.myclass-header-inner::before {

	content: "✦";

	position: absolute;

	left: 29%;

	top: 13px;

	color: #ffe27a;

	font-size: 17px;

	animation: headerTwinkle 2s ease-in-out infinite;

}

.myclass-header-inner::after {

	content: "✦";

	position: absolute;

	right: 29%;

	bottom: 12px;

	color: #ffffff;

	font-size: 13px;

	animation: headerTwinkle 2.5s ease-in-out infinite .4s;

}

/* =========================================================
   LOGO
========================================================= */

.myclass-header-logo {

	grid-column: 2;

	grid-row: 1;

	justify-self: center;

	display: flex;

	align-items: center;

	justify-content: center;

	position: relative;

	z-index: 3;

	text-decoration: none;

	line-height: 0;

}

/* little glow behind logo */

.myclass-header-logo::before {

	content: "";

	position: absolute;

	width: 125px;

	height: 55px;

	border-radius: 50%;

	background: rgba(255, 255, 255, .18);

	filter: blur(12px);

	z-index: -1;

}

/* logo */

.myclass-header-logo img {

	display: block;

	width: auto;

	height: 82px;

	max-width: 230px;

	object-fit: contain;

	transform-origin: center bottom;

	transition: transform .3s ease,
	filter .3s ease;

	filter: drop-shadow(
			0 5px 4px rgba(0, 0, 0, .16)
	);

}

/* hover */

.myclass-header-logo:hover img {

	transform: translateY(-4px) scale(1.05) rotate(-1deg);

	filter: drop-shadow(
			0 8px 7px rgba(0, 0, 0, .2)
	);

}

/* =========================================================
   BRAND / CLASS
========================================================= */

.myclass-brand {

	grid-column: 3;

	grid-row: 1;

	justify-self: end;

	display: inline-flex;

	align-items: center;

	gap: 11px;

	padding: 10px 15px;

	border-radius: 18px;

	background: rgba(255, 255, 255, .15);

	border: 1px solid rgba(255, 255, 255, .25);

	box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

	backdrop-filter: blur(8px);

	text-decoration: none;

	transition: transform .25s ease,
	background .25s ease;

}

.myclass-brand:hover {

	transform: translateY(-3px);

	background: rgba(255, 255, 255, .23);

	text-decoration: none;

}

/* graduation icon */

.myclass-brand-icon {

	width: 42px;

	height: 42px;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

	border-radius: 13px;

	background: linear-gradient(
			135deg,
			#ffd166,
			#ffb703
	);

	color: #ffffff;

	font-size: 19px;

	box-shadow: 0 5px 12px rgba(180, 120, 0, .22);

}

/* brand text */

.myclass-brand-text {

	color: #ffffff;

	font-size: 17px;

	font-weight: 900;

	white-space: nowrap;

	text-shadow: 0 2px 3px rgba(0, 0, 0, .12);

}

/* =========================================================
   USER AREA
========================================================= */

.myclass-user-area {

	grid-column: 1;

	grid-row: 1;

	justify-self: start;

	display: flex;

	align-items: center;

}

/* =========================================================
   USER
========================================================= */

.myclass-user {

	display: flex;

	align-items: center;

	gap: 9px;

	padding: 6px 9px 6px 7px;

	border-radius: 18px;

	background: rgba(255, 255, 255, .13);

	border: 1px solid rgba(255, 255, 255, .20);

	backdrop-filter: blur(8px);

}

/* =========================================================
   USER AVATAR
========================================================= */

.myclass-user-avatar {

	width: 46px;

	height: 46px;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

	border-radius: 50%;

	background: linear-gradient(
			135deg,
			#ffffff,
			#e8f7ff
	);

	border: 3px solid #ffffff;

	font-size: 22px;

	box-shadow: 0 4px 12px rgba(0, 0, 0, .13);

}

/* =========================================================
   USER INFO
========================================================= */

.myclass-user-info {

	display: flex;

	flex-direction: column;

	align-items: flex-start;

	gap: 2px;

}

.myclass-user-info strong {

	max-width: 170px;

	overflow: hidden;

	color: #ffffff;

	font-size: 14px;

	font-weight: 900;

	text-overflow: ellipsis;

	white-space: nowrap;

	text-shadow: 0 2px 3px rgba(0, 0, 0, .15);

}

.myclass-user-info span {

	color: rgba(255, 255, 255, .78);

	font-size: 11px;

	font-weight: 700;

}

/* =========================================================
   LOGOUT
========================================================= */

.myclass-logout {

	margin-right: 4px;

	padding: 6px 9px;

	border-radius: 10px;

	background: rgba(255, 90, 110, .14);

	color: #ffe1e5;

	text-decoration: none;

	font-size: 11px;

	font-weight: 900;

	transition: background .2s ease,
	transform .2s ease;

}

.myclass-logout:hover {

	background: #ff5c72;

	color: #ffffff;

	transform: translateY(-2px);

}

/* =========================================================
   LOGIN
========================================================= */

.myclass-login {

	display: inline-flex;

	align-items: center;

	gap: 8px;

	padding: 11px 17px;

	border-radius: 15px;

	background: #ffffff;

	color: #258a58;

	font-weight: 900;

	text-decoration: none;

	box-shadow: 0 6px 15px rgba(0, 0, 0, .12);

	transition: transform .25s ease,
	box-shadow .25s ease;

}

.myclass-login:hover {

	transform: translateY(-3px);

	color: #197244;

	text-decoration: none;

	box-shadow: 0 9px 20px rgba(0, 0, 0, .16);

}

.myclass-login i {

	width: 27px;

	height: 27px;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 9px;

	background: #e7f8ef;

}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.myclass-mobile-toggle {

	display: none;

	width: 44px;

	height: 44px;

	border: 0;

	border-radius: 14px;

	background: #ffffff;

	color: #268b59;

	font-size: 19px;

	cursor: pointer;

	align-items: center;

	justify-content: center;

	box-shadow: 0 5px 14px rgba(0, 0, 0, .12);

	transition: transform .25s ease,
	background .25s ease;

}

.myclass-mobile-toggle:hover {

	background: #fff6d8;

	transform: rotate(5deg) scale(1.04);

}

/* =========================================================
   MOBILE MENU
========================================================= */

.myclass-mobile-menu {

	display: none;

}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes headerBubbleFloat {

	0%,
	100% {

		transform: translateY(0) scale(1);

	}

	50% {

		transform: translateY(-10px) scale(1.05);

	}

}

@keyframes headerTwinkle {

	0%,
	100% {

		opacity: .25;

		transform: scale(.8) rotate(0deg);

	}

	50% {

		opacity: 1;

		transform: scale(1.25) rotate(20deg);

	}

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

	.myclass-header-inner {

		min-height: 82px;

		padding: 7px 25px;

		gap: 12px;

	}

	.myclass-header-logo img {

		height: 72px;

		max-width: 190px;

	}

	.myclass-brand {

		padding: 8px 11px;

	}

	.myclass-brand-icon {

		width: 38px;

		height: 38px;

	}

	.myclass-brand-text {

		font-size: 15px;

	}

	.myclass-user-info {

		display: none;

	}

	.myclass-user {

		padding: 5px;

	}

	.myclass-user-avatar {

		width: 40px;

		height: 40px;

	}

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

	.myclass-header {

		width: calc(100% - 14px);

		margin: 7px auto 0;

		border-radius: 20px;

	}

	.myclass-header-inner {

		min-height: 70px;

		padding: 8px 10px;

		grid-template-columns:
            44px
            1fr
            auto;

		gap: 6px;

	}

	/* menu */
	.myclass-mobile-toggle {

		display: flex;

		grid-column: 1;

		grid-row: 1;

		justify-self: start;

	}

	/* logo */
	.myclass-header-logo {

		grid-column: 2;

		grid-row: 1;

		justify-self: center;

	}

	.myclass-header-logo img {

		height: 52px;

		max-width: 135px;

	}

	.myclass-header-logo::before {

		width: 95px;

		height: 42px;

	}

	/* brand */
	.myclass-brand {

		grid-column: 3;

		grid-row: 1;

		justify-self: end;

		padding: 6px 9px;

		gap: 0;

		border-radius: 13px;

		background: rgba(255, 255, 255, .13);

	}

	.myclass-brand-icon {

		display: none;

	}

	.myclass-brand-text {

		font-size: 13px;

		color: #ffffff;

	}

	/* desktop user hidden */
	.myclass-user-area {

		display: none;

	}

	/* =====================================================
	   MOBILE MENU
	===================================================== */
	.myclass-mobile-menu {

		display: flex;

		flex-direction: column;

		gap: 7px;

		position: absolute;

		top: calc(100% + 9px);

		left: 0;

		right: auto;

		width: min(
				285px,
				calc(100vw - 25px)
		);

		padding: 12px;

		background: #ffffff;

		border: 2px solid #eaf5ff;

		border-radius: 20px;

		box-shadow: 0 15px 40px rgba(30, 80, 120, .16);

		opacity: 0;

		visibility: hidden;

		transform: translateY(-10px) scale(.97);

		pointer-events: none;

		transition: opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;

	}

	.myclass-mobile-menu.is-open {

		opacity: 1;

		visibility: visible;

		transform: translateY(0) scale(1);

		pointer-events: auto;

	}

	/* mobile user */
	.myclass-mobile-user {

		display: flex;

		align-items: center;

		gap: 12px;

		padding: 9px 7px;

		border-radius: 15px;

		background: linear-gradient(
				135deg,
				#f2fbff,
				#fff9e7
		);

	}

	.myclass-mobile-user-avatar {

		width: 46px;

		height: 46px;

		display: flex;

		align-items: center;

		justify-content: center;

		flex-shrink: 0;

		border-radius: 50%;

		background: #ffffff;

		border: 3px solid #8ed8b1;

		font-size: 22px;

		box-shadow: 0 4px 10px rgba(0, 0, 0, .08);

	}

	.myclass-mobile-user-info {

		display: flex;

		flex-direction: column;

		gap: 3px;

	}

	.myclass-mobile-user-info strong {

		color: #263b32;

		font-size: 15px;

		font-weight: 900;

	}

	.myclass-mobile-user-info span {

		color: #739184;

		font-size: 12px;

		font-weight: 700;

	}

	/* divider */
	.myclass-mobile-menu-divider {

		width: 100%;

		height: 2px;

		background: linear-gradient(
				90deg,
				transparent,
				#e5f3ec,
				transparent
		);

		margin: 2px 0;

	}

	/* item */
	.myclass-mobile-menu-item {

		min-height: 48px;

		padding: 8px 13px;

		display: flex;

		align-items: center;

		gap: 11px;

		border-radius: 13px;

		background: #f7fbf9;

		color: #29473a;

		text-decoration: none;

		font-size: 14px;

		font-weight: 800;

		transition: transform .2s ease,
		background .2s ease;

	}

	.myclass-mobile-menu-item:hover {

		background: #eaf8f0;

		color: #218452;

		transform: translateX(-3px);

		text-decoration: none;

	}

	.myclass-mobile-menu-item i {

		width: 27px;

		height: 27px;

		display: flex;

		align-items: center;

		justify-content: center;

		border-radius: 9px;

		background: #e7f8ef;

		color: #278d5b;

		font-size: 15px;

	}

	/* logout */
	.myclass-mobile-menu-logout {

		background: #fff4f5;

		color: #e5485d;

	}

	.myclass-mobile-menu-logout i {

		background: #ffe4e8;

		color: #e5485d;

	}

	.myclass-mobile-menu-logout:hover {

		color: #d9344b;

		background: #ffecee;

	}

}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

	.myclass-header {

		width: calc(100% - 8px);

		margin-top: 4px;

		border-radius: 17px;

	}

	.myclass-header-inner {

		min-height: 63px;

		padding: 6px 8px;

		grid-template-columns:
            40px
            1fr
            auto;

		gap: 5px;

	}

	.myclass-mobile-toggle {

		width: 40px;

		height: 40px;

		border-radius: 12px;

		font-size: 17px;

	}

	.myclass-header-logo img {

		height: 45px;

		max-width: 112px;

	}

	.myclass-brand {

		padding: 5px 7px;

		border-radius: 11px;

	}

	.myclass-brand-text {

		font-size: 11px;

	}

}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.myclass-header::before,
	.myclass-header::after,
	.myclass-header-inner::before,
	.myclass-header-inner::after {

		animation: none;

	}

}