/* Amar Kashimpur Courier – Auth / Login styles
   Brand: Green + Mint + White
   Fonts: Inter + Noto Sans Bengali (loaded by theme or plugin)
*/

.akc-login-wrapper {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 40%, #f8fafc 100%);
}

.akc-login-card {
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
	padding: 40px 32px;
}

.akc-login-header {
	text-align: center;
	margin-bottom: 28px;
}

.akc-login-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.akc-logo-icon {
	font-size: 28px;
	line-height: 1;
}

.akc-logo-text {
	font-size: 18px;
	font-weight: 700;
	color: #065f46;
	letter-spacing: -0.02em;
}

.akc-login-title {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 6px;
	line-height: 1.3;
}

.akc-login-subtitle {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.akc-form-group {
	margin-bottom: 18px;
}

.akc-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}

.akc-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	color: #111827;
	transition: border-color 0.15s, box-shadow 0.15s;
	box-sizing: border-box;
}

.akc-input:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.akc-form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	flex-wrap: wrap;
	gap: 8px;
}

.akc-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #4b5563;
	cursor: pointer;
}

.akc-checkbox input {
	width: 16px;
	height: 16px;
	accent-color: #10b981;
}

.akc-forgot-link {
	font-size: 13px;
	color: #059669;
	text-decoration: none;
	font-weight: 500;
}

.akc-forgot-link:hover {
	text-decoration: underline;
}

.akc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
}

.akc-btn-primary {
	background: #059669;
	color: #fff;
}

.akc-btn-primary:hover {
	background: #047857;
}

.akc-btn-primary:active {
	transform: scale(0.98);
}

.akc-btn-block {
	width: 100%;
}

.akc-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.akc-alert {
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	margin-bottom: 18px;
}

.akc-alert-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.akc-alert-success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.akc-login-footer {
	margin-top: 24px;
	text-align: center;
	font-size: 13px;
	color: #9ca3af;
}

.akc-login-already {
	text-align: center;
	padding: 40px 20px;
}

/* Responsive */
@media (max-width: 480px) {
	.akc-login-card {
		padding: 28px 20px;
		border-radius: 12px;
	}
	.akc-login-title {
		font-size: 20px;
	}
}
