body {
	background:
		radial-gradient(circle at 8% 10%, rgba(0, 123, 255, 0.14), transparent 32%),
		radial-gradient(circle at 92% 85%, rgba(0, 166, 214, 0.12), transparent 35%),
		#f3f8fd;
}

.auth-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 1.5rem;
}

.auth-shell {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: stretch;
	max-width: 1100px;
	width: 100%;
}

.auth-brand-panel,
.auth-card {
	border-radius: 22px;
	overflow: hidden;
}

.auth-brand-panel {
	background: linear-gradient(145deg, #0a5cae 0%, #0b7fc4 58%, #179dc8 100%);
	color: #fff;
	padding: 2.8rem;
	box-shadow: 0 28px 55px rgba(0, 76, 145, 0.25);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.auth-brand-panel::before,
.auth-brand-panel::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.auth-brand-panel::before {
	width: 220px;
	height: 220px;
	background: rgba(255, 255, 255, 0.12);
	top: -70px;
	right: -70px;
}

.auth-brand-panel::after {
	width: 160px;
	height: 160px;
	background: rgba(255, 255, 255, 0.09);
	bottom: -45px;
	left: -40px;
}

.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-weight: 700;
	margin-bottom: 1.1rem;
}

.brand-badge i {
	font-size: 0.95rem;
}

.auth-brand-panel h1 {
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0.9rem;
	position: relative;
	z-index: 1;
}

.auth-brand-panel p {
	margin-bottom: 1.1rem;
	color: rgba(255, 255, 255, 0.94);
	position: relative;
	z-index: 1;
}

.brand-points {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: grid;
	gap: 0.75rem;
	position: relative;
	z-index: 1;
}

.brand-points li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 0.6rem 0.85rem;
	font-weight: 500;
}

.brand-points li i {
	font-size: 1rem;
}

.btn-back-home {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.62rem 1.2rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.95);
	color: #0b6ec8;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 16px rgba(2, 56, 116, 0.12);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.btn-back-home:hover {
	color: #0a5fb5;
	background: #fff;
	box-shadow: 0 10px 20px rgba(2, 56, 116, 0.15);
	transform: translateY(-1px);
	text-decoration: none;
}

.auth-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border: 1px solid rgba(0, 102, 204, 0.14);
	box-shadow: 0 24px 50px rgba(0, 70, 140, 0.16);
	padding: 2.5rem;
}

.auth-card-top {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.top-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #0d5ea9;
	background: rgba(13, 94, 169, 0.06);
	border: 1px solid rgba(13, 94, 169, 0.12);
	padding: 0.4rem 0.7rem;
	border-radius: 8px;
}

.auth-header h2 {
	margin: 0;
	color: #0c4e8e;
	font-weight: 700;
	font-size: 1.6rem;
}

.auth-header p {
	margin: 0.5rem 0 1.5rem;
	color: #6b7c8d;
	font-size: 0.95rem;
}

.auth-alert {
	border-radius: 12px;
	padding: 0.8rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.92rem;
}

.auth-alert ul {
	margin: 0;
	padding-left: 1rem;
}

.auth-alert-danger {
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f1b6bd;
}

.auth-alert-success {
	color: #0e6245;
	background: #d8f3e8;
	border: 1px solid #bce8d4;
}

.auth-form {
	display: grid;
	gap: 1.5rem;
}

.field-group {
	display: grid;
	gap: 0.6rem;
}

.field-label {
	font-weight: 600;
	color: #2f3e4e;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
}

.field-label i {
	color: #0f6fc1;
	font-size: 1rem;
}

.field-control {
	border: 1px solid #e0e8f0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	background: #fafbfc;
	transition: all 0.25s ease;
	padding: 0 0.8rem;
}

.field-control:focus-within {
	border-color: #0f6fc1;
	box-shadow: 0 0 0 0.22rem rgba(15, 111, 193, 0.15);
	background: #fff;
}

.field-input {
	border: 0;
	outline: none;
	width: 100%;
	background: transparent;
	padding: 0.85rem 0;
	font-size: 0.96rem;
	color: #2a3440;
}

.password-toggle {
	border: 0;
	background: transparent;
	color: #5f7285;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.password-toggle:hover {
	color: #0f6fc1;
	background: rgba(15, 111, 193, 0.1);
}

.field-input.is-invalid {
	color: #842029;
}

.field-error {
	color: #b42318;
	font-size: 0.84rem;
	font-weight: 600;
}

.field-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0.2rem 0 0.4rem;
}

.remember-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	color: #445262;
}

.remember-wrap input {
	width: 16px;
	height: 16px;
	accent-color: #0f6fc1;
}

.forgot-password-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.9rem;
	color: #0f6fc1;
	text-decoration: none;
	transition: all 0.25s ease;
}

.forgot-password-link:hover {
	color: #0d5aa6;
	text-decoration: underline;
}

.role-option {
	display: flex;
	align-items: center;
	padding: 0.95rem;
	border: 2px solid #d2dfeb;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.25s ease;
	background: #fbfdff;
}

.role-option input[type="radio"] {
	margin: 0;
	margin-right: 0.6rem;
	width: 18px;
	height: 18px;
	accent-color: #0f6fc1;
	cursor: pointer;
}

.role-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: #445262;
}

.role-label i {
	font-size: 1.1rem;
	color: #0f6fc1;
}

.role-option input[type="radio"]:checked + .role-label {
	color: #0f6fc1;
}

.role-option:has(input[type="radio"]:checked) {
	border-color: #0f6fc1;
	background: rgba(15, 111, 193, 0.08);
	box-shadow: 0 0 0 0.2rem rgba(15, 111, 193, 0.1);
}

.field-help {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.82rem;
	color: #5a6b7c;
	margin-top: 0.35rem;
}

.field-help i {
	font-size: 0.75rem;
	color: #0f6fc1;
}

.btn-auth-submit {
	width: 100%;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #0a5fb5 0%, #0ea0cd 100%);
	color: #fff;
	font-weight: 600;
	padding: 0.95rem 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	box-shadow: 0 12px 20px rgba(0, 85, 165, 0.18);
	transition: all 0.25s ease;
	font-size: 0.95rem;
}

.btn-auth-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(0, 85, 165, 0.24);
}

.auth-card-foot {
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px dashed #d7e4f0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.auth-card-foot span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #5b6c7d;
}

.auth-card-foot i {
	color: #0f6fc1;
}

@media (max-width: 992px) {
	.auth-shell {
		grid-template-columns: 1fr;
		max-width: 550px;
	}

	.auth-brand-panel,
	.auth-card {
		padding: 2rem;
	}

	.auth-brand-panel h1 {
		font-size: 1.55rem;
	}
}

@media (max-width: 576px) {
	.auth-section {
		padding: 1.1rem 0;
	}

	.auth-brand-panel,
	.auth-card {
		border-radius: 16px;
	}
}

.reset-timer {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #f57f17;
	padding: 0.6rem 0.85rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-top: 0.8rem;
	margin-bottom: 2rem;
}

.reset-timer i {
	font-size: 0.95rem;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

.info-text {
	background: rgba(13, 94, 169, 0.08);
	border-left: 3px solid #0f6fc1;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	color: #445262;
	font-size: 0.9rem;
	margin: 0.5rem 0 0.75rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.info-text i {
	color: #0f6fc1;
	margin-top: 0.1rem;
	flex-shrink: 0;
}
