:root {
	--navy: #06234a;
	--navy2: #001b3f;
	--yellow: #ffc21a;
	--green: #067a35;
	--text: #092249;
	--muted: #5d6b82;
	--card: #fff;
	--soft: #f5f8fc;
	--line: #e7edf5
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--text);
	background: #fff
}

a {
	text-decoration: none;
	color: inherit
}

img {
	max-width: 100%;
	display: block
}

.container {
	width: 98%;
	margin: auto;
}

.top {
	background: var(--navy);
	color: #fff;
	font-size: 14px
}

.top .container {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0
}

.top span {
	margin-right: 22px;
}

.header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 10;
	box-shadow: 0 2px 12px #00000012;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 32px;
	color: var(--navy)
}

.logo-badge {
	width: 58px;
	height: 58px;
	background: var(--navy);
	color: var(--yellow);
	display: grid;
	place-items: center;
	border: 4px solid var(--yellow);
	border-radius: 18px 18px 24px 24px;
	font-weight: 900
}

.tag {
	display: block;
	font-size: 11px;
	color: var(--yellow);
	letter-spacing: .7px
}

.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	font-weight: 700;
	font-size: 14px
}

.menu a {
	padding-bottom: 14px;
}

.menu a {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 100%;
	background: yellow;
	background-size: 200% auto;
	transition: all .5s;
	transform: translateX(-100%);
}

.menu a:hover::after {
	transform: translateX(0%);
	animation: gradient-89 3s linear infinite;
}

@keyframes gradient-89 {
	0% {
		background-position: 100% 0%;
	}

	50% {
		background-position: 0% 0%;
	}

	100% {
		background-position: 100% 0%;
	}
}

.pill {
	background: var(--yellow);
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 12px
}

.toggle {
	display: none;
	background: var(--navy);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 22px
}

.hero {
	overflow: hidden
}

.laptopcmn {
	border-radius: 14px;
	min-height: 440px;
	background: linear-gradient(135deg, #e2d7c7, #fff);
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 900;
}

.hero-grid {
	background: url('../img/bg.png');
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	min-height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
}

.opacitydiv {
	padding: 20px;
}

.hrrk {
	opacity: 0.6;
	width: 60%;
}

.smltxtlogin {
	text-align: center;
	display: block;
	color: #fff !important;
	margin-top: 20px;
}

.hero h1 {
	font-size: 54px;
	line-height: 1.03;
	margin: 0 0 20px;
	font-weight: 900
}

.hero h1 span {
	color: var(--yellow)
}

.hero p {
	font-size: 20px;
	line-height: 1.55;
	font-weight: 700;
	margin: 0 0 28px
}

.hero small {
	font-size: 15px;
	line-height: 1.7;
	color: #233858;
	font-weight: 600
}

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 34px
}

.feature {
	text-align: center;
	border-right: 1px solid var(--line);
	padding: 12px
}

.feature:last-child {
	border-right: 0
}

.icon {
	font-size: 36px;
	color: var(--navy);
	margin-bottom: 10px
}

.feature b {
	display: block;
	font-size: 13px
}

.feature span {
	font-size: 12px
}

.hero-img {
	position: relative;
	min-height: 530px;
}

.students {
	position: absolute;
	left: 5%;
	bottom: 0;
	width: 58%;
	height: 90%;
	background: linear-gradient(135deg, #bdc8d6, #ffffff);
	border-radius: 35px 35px 0 0;
	display: grid;
	place-items: center;
	text-align: center;
	color: #65758e;
	font-size: 20px;
	font-weight: 800;

	padding: 20px
}

.login-box {
	position: absolute;
	right: 10px;
	top: 45px;
	background: var(--navy2);
	color: #fff;
	width: 300px;
	border-radius: 18px;
	padding: 26px;
	box-shadow: 0 12px 30px #0004
}

.login-box h3 {
	font-size: 26px;
	margin: 0 0 20px
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: var(--yellow);
	color: #111;
	padding: 16px 20px;
	border-radius: 10px;
	font-weight: 800;
	margin-top: 18px;
	transition: all .5s;
}

.btn.white {
	background: #fff;
	color: var(--navy)
}

.btn:hover {
	background: var(--yellow);
	color: #111;
}

.section {
	padding: 28px 0
}

.panel {
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	background: #fff
}

.title {
	text-align: center;
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 12px
}

.subtitle {
	text-align: center;
	font-weight: 800;
	margin: 0 0 28px
}

.practice {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 28px
}

.laptop {
	border-radius: 14px;
	min-height: 440px;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 900
}

.test-icons {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	text-align: center
}

.test-icons div {
	font-size: 12px;
	font-weight: 800
}

.test-icons .round {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff5e1;
	margin: 0 auto 10px;
	display: grid;
	place-items: center;
	font-size: 32px
}

.cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-top: 32px
}

.mini {
	border-radius: 14px;
	padding: 28px;
	background: #eef6ff
}

.mini.green {
	background: #e9f6ee
}

.mini h3 {
	margin: 0 0 8px
}

.mini .btn {
	width: max-content;
	color: #fff;
	background: var(--navy);
	padding: 14px 26px
}

.mini.green .btn {
	background: var(--green)
}

.why {
	background: var(--navy2);
	color: #fff;
	border-radius: 14px;
	padding: 34px;
}

.why h2 {
	text-align: center;
	margin: 0 0 28px
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	text-align: center
}

.why-grid div {
	border-right: 1px solid #ffffff55;
	padding: 0 14px
}

.why-grid div:last-child {
	border-right: 0
}

.why .icon {
	color: var(--yellow)
}

.testimonials {
	display: grid;
	gap: 24px
}

.stars {
	color: var(--yellow);
	font-size: 22px
}

.avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #d8e1ec;
	margin: 25px auto 10px
}

.cta {
	background: var(--navy2);
	color: #fff;
	border-radius: 12px;
	padding: 24px 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.footer {
	background: var(--navy2);
	color: #fff;
	margin-top: 22px;
	padding: 34px 0 18px
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
	gap: 35px
}

.footer h4 {
	margin: 0 0 14px
}

.footer a,
.footer p {
	display: block;
	color: #dce5f1;
	font-size: 14px;
	line-height: 1.8;
	margin: 0
}

.copy {
	border-top: 1px solid #ffffff33;
	margin-top: 28px;
	padding-top: 14px;
	text-align: center;
	font-size: 13px;
	color: #dce5f1
}

@media(max-width:900px) {
	.top .container {
		flex-direction: column;
		text-align: center
	}

	.toggle {
		display: block
	}

	.menu {
		position: absolute;
		top: 92px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 5%;
		box-shadow: 0 12px 25px #0002;
		display: none
	}

	.menu.show {
		display: flex
	}

	.menu a.active {
		padding-bottom: 4px
	}

	.hero {
		background: #fff
	}

	.hero-grid,
	.practice,
	.cards,
	.testimonials,
	.foot-grid {
		grid-template-columns: 1fr
	}

	.hero h1 {
		font-size: 38px
	}

	.hero-grid {
		min-height: auto;
		padding: 35px 0
	}

	.hero-img {
		min-height: 420px;
		margin-top: 30px
	}

	.students {
		width: 65%;
		left: 0
	}


	.features,
	.test-icons,
	.why-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.why-grid div {
		border-right: 0
	}

	.cta {
		flex-direction: column;
		text-align: center
	}

	.logo {
		font-size: 24px
	}

	.logo-badge {
		width: 48px;
		height: 48px
	}

	.panel {
		padding: 18px
	}

	.laptop {
		min-height: 270px
	}
}

@media(max-width:520px) {
	.container {
		width: 94%
	}

	.hero h1 {
		font-size: 31px
	}

	.hero p {
		font-size: 16px
	}

	.features,
	.test-icons,
	.why-grid {
		grid-template-columns: 1fr
	}

	.feature {
		border-right: 0;
		border-bottom: 1px solid var(--line)
	}

	.students {
		position: relative;
		width: 100%;
		height: 260px;
		left: auto
	}

	.hero-img {
		min-height: 0;
		background: none
	}

	.title {
		font-size: 23px
	}

	.cta .btn {
		width: 100%
	}

	.top span {
		display: block;
		margin: 4px 0
	}

	.foot-grid {
		text-align: center
	}

	.logo {
		justify-content: center
	}
}

.login-container {
	width: 100%;
	max-width: 1000px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
	margin: 40px auto;
}

.left-panel {
	background: linear-gradient(rgba(6, 31, 79, .92), rgba(6, 31, 79, .92)),
		url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1200');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-box {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: #f4b400;
	color: #061f4f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 24px;
}

.left-panel h1 {
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 15px;
}

.left-panel h1 span {
	color: #f4b400;
}

.left-panel p {
	line-height: 1.8;
	color: #e8eef8;
}

.right-panel {
	padding: 50px;
}

.login-title {
	margin-bottom: 30px;
}

.login-title h2 {
	color: #061f4f;
	font-size: 32px;
	margin-bottom: 10px;
}

.login-title p {
	color: #6c7488;
}

.user-type {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.user-card {
	flex: 1;
	border: 2px solid #e4e8f0;
	padding: 15px;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: .3s;
}

.user-card:hover,
.user-card.active {
	border-color: #f4b400;
	background: #fff8e5;
}

.user-card i {
	font-size: 28px;
	color: #061f4f;
	margin-bottom: 8px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #061f4f;
	font-weight: 600;
}

.input-box {
	position: relative;
}

.input-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #8b93a8;
}

.input-box input {
	width: 100%;
	padding: 15px 15px 15px 45px;
	border: 1px solid #dfe4ee;
	border-radius: 12px;
	outline: none;
	transition: .3s;
}

.input-box input:focus {
	border-color: #f4b400;
}

.options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	font-size: 14px;
}

.options a {
	color: #061f4f;
	text-decoration: none;
	font-weight: 600;
}

.login-btn {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 12px;
	background: #f4b400;
	color: #061f4f;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.login-btn:hover {
	transform: translateY(-2px);
}

.register-link {
	text-align: center;
	margin-top: 20px;
	color: #6c7488;
}

.register-link a {
	color: #061f4f;
	font-weight: 700;
	text-decoration: none;
}

.logomob {
	height: 100px;
}

.mobimg {
	height: 442px;
}

@media(max-width:768px) {
	.login-container {
		grid-template-columns: 1fr;
	}

	.mobimg {
		height: 280px;
	}

	.logomob {
		height: 70px;
	}

	.left-panel {
		padding: 35px 25px;
	}

	.left-panel h1 {
		font-size: 30px;
	}

	.right-panel {
		padding: 30px 20px;
	}

	.user-type {
		flex-direction: column;
	}
}

.register-box {
	width: 100%;
	max-width: 1100px;
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	box-shadow: 0 20px 55px rgba(0, 0, 0, .12);
	margin: 20px auto;
}

.left-panel {
	background: linear-gradient(rgba(6, 31, 79, .92), rgba(6, 31, 79, .92)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=900&auto=format&fit=crop') center/cover;
	color: #fff;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.logo {
	display: flex;
	align-items: center;
	gap: 14px
}

.logo-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: var(--yellow);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 800
}

.logo h2 {
	font-size: 30px
}

.logo span {
	display: block;
	color: var(--yellow);
	font-size: 12px;
	margin-top: 3px
}

.left-content h1 {
	font-size: 42px;
	line-height: 1.2;
	margin: 45px 0 18px
}

.left-content h1 span {
	color: var(--yellow)
}

.left-content p {
	color: #e7edf8;
	line-height: 1.8;
	font-size: 15px
}

.right-panel {
	padding: 45px 42px
}

.form-header {
	margin-bottom: 28px
}

.form-header h2 {
	color: var(--navy);
	font-size: 32px;
	margin-bottom: 8px
}

.form-header p {
	color: #6a7285;
	font-size: 14px
}

.user-type {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 25px
}

.type-card {
	border: 2px solid #e6eaf2;
	border-radius: 14px;
	padding: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: .3s
}

.type-card input {
	display: none
}

.type-card i {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f8f2df;
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px
}

.type-card span {
	color: var(--navy);
	font-weight: 700;
	font-size: 14px
}

.type-card:has(input:checked) {
	border-color: var(--yellow);
	background: #fff9e8
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px
}

.form-group {
	display: flex;
	flex-direction: column
}

.form-group.full {
	grid-column: 1/-1
}

.form-group label {
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px
}

.input-box {
	position: relative
}

.input-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #9aa3b5
}

.input-box input,
.input-box select,
.input-box textarea {
	width: 100%;
	border: 1px solid #dfe4ee;
	border-radius: 12px;
	padding: 14px 15px 14px 44px;
	font-size: 14px;
	outline: none;
	transition: .3s;
	background: #fff
}

.input-box textarea {
	min-height: 95px;
	resize: none;
	padding-top: 14px
}

.input-box .textarea-icon {
	top: 20px;
	transform: none
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 4px rgba(247, 181, 0, .15)
}

.terms {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 22px 0;
	font-size: 13px;
	color: #5c6578;
	line-height: 1.6
}

.terms input {
	margin-top: 4px;
	accent-color: var(--yellow)
}

.terms a {
	color: var(--navy);
	font-weight: 700;
	text-decoration: none
}

.submit-btn {
	width: 100%;
	border: none;
	border-radius: 14px;
	padding: 16px;
	background: var(--yellow);
	color: var(--navy);
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: .3s
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(247, 181, 0, .35)
}

.login-link {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: #687186
}

.login-link a {
	color: var(--navy);
	font-weight: 800;
	text-decoration: none
}

@media(max-width:900px) {
	.register-box {
		grid-template-columns: 1fr
	}

	.left-panel {
		padding: 35px 25px
	}

	.left-content h1 {
		font-size: 32px;
		margin-top: 35px
	}
}

@media(max-width:600px) {
	
	.right-panel {
		padding: 30px 20px
	}

	.form-header h2 {
		font-size: 25px
	}

	.user-type,
	.form-grid {
		grid-template-columns: 1fr
	}

	.logo h2 {
		font-size: 24px
	}
}