/* Easy Login — scoped front-end styles */

.el-login-wrap,
.el-dashboard-wrap {
	max-width: 420px;
	margin: 2rem auto;
	padding: 0 1rem;
	font-family: inherit;
}

.el-dashboard-wrap {
	max-width: 520px;
}

.el-notice {
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
}

.el-notice-error {
	background: #fce8e8;
	border: 1px solid #e8b4b4;
	color: #8b1a1a;
}

.el-login-form .el-field {
	margin-bottom: 1rem;
}

.el-login-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.el-login-form input[type="text"],
.el-login-form input[type="password"] {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.el-login-form input[type="text"]:focus,
.el-login-form input[type="password"]:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.el-remember label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 400;
	cursor: pointer;
}

.el-remember input {
	margin: 0;
}

.el-btn {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease;
}

.el-btn-primary {
	background: #2271b1;
	color: #fff;
}

.el-btn-primary:hover {
	background: #135e96;
	color: #fff;
}

.el-btn-secondary {
	background: #f0f0f1;
	color: #1d2327;
	border: 1px solid #c3c4c7;
}

.el-btn-secondary:hover {
	background: #dcdcde;
	color: #1d2327;
}

.el-lost-password {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	text-align: center;
}

.el-lost-password a {
	color: #2271b1;
}

.el-dashboard-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.el-welcome {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.el-profile-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.el-avatar {
	text-align: center;
	margin-bottom: 1.25rem;
}

.el-avatar img {
	border-radius: 50%;
}

.el-profile-details {
	margin: 0;
}

.el-profile-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.6rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.el-profile-row:last-child {
	border-bottom: none;
}

.el-profile-row dt {
	margin: 0;
	font-weight: 600;
	font-size: 0.875rem;
	color: #50575e;
}

.el-profile-row dd {
	margin: 0;
	font-size: 0.9rem;
	text-align: right;
	word-break: break-word;
}

.el-logout {
	margin-top: 1.5rem;
	text-align: center;
}

@media (max-width: 480px) {
	.el-profile-row {
		flex-direction: column;
		gap: 0.25rem;
	}

	.el-profile-row dd {
		text-align: left;
	}
}
