.md-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 32px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
/* 	max-width: 420px; */
	width: 100%;
}

.md-title {
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 4px;
}

.md-subtitle {
	color: #6b7280;
	font-size: 14px;
	margin-bottom: 24px;
}

.md-field label {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.md-field {
	position: relative;
	margin-bottom: 20px; /* tăng khoảng cách giữa các field */
}

.md-input {
	width: 100%;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #d1d5db;
	transition: all .25s;
	font-size: 14px;
}

.md-input:focus {
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
	outline: none;
}

.md-btn {
	width: 100%;
	padding: 0 20px;
	height: 40px;
	border-radius: 12px;
	font-weight: 600;
	color: white;
	background: linear-gradient(135deg, #6366f1, #4f46e5);
	box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
	border: none;
	transition: .25s;
}

.md-btn:hover {
	opacity: .95;
	transform: translateY(-1px);
}

.oauth-btn {
	width: 100%;
	padding: 0 16px;
	height: 38px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	transition: .25s;
}

.oauth-btn i {
	font-size: 16px;
}

.form-check-label {
	font-size: 13px;
}

hr {
	border-top: 1px solid #e5e7eb;
}

.footer-links a {
	font-size: 13px;
	text-decoration: none;
}

.error {
	background: #fee2e2;
	border: 1px solid #fca5a5;
	padding: 12px 16px;
	border-radius: 10px;
	color: #b91c1c;
	font-size: 14px;
	margin-bottom: 10px;
}

.error ul {
	margin: 0;
	padding-left: 20px;
}