/* Comment Login & Register - front-end styles */

.clr-widget {
	max-width: 420px;
	margin: 10px 0 20px;
	padding: 20px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fafafa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.clr-notice {
	font-size: 14px;
	color: #444;
	margin: 0 0 14px;
}

.clr-message {
	font-size: 13px;
	padding: 8px 10px;
	border-radius: 6px;
	margin-bottom: 12px;
}
.clr-message.clr-success { background: #d1fae5; color: #065f46; }
.clr-message.clr-error { background: #fee2e2; color: #991b1b; }

.clr-tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 16px;
}

.clr-tab {
	flex: 1;
	background: #eee;
	border: none;
	padding: 10px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	color: #333;
}

.clr-tab.clr-tab-active {
	background: #2563eb;
	color: #fff;
}

.clr-google-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.clr-or {
	text-align: center;
	color: #999;
	font-size: 12px;
	margin: 6px 0 14px;
	position: relative;
}
.clr-or::before, .clr-or::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background: #ddd;
}
.clr-or::before { left: 0; }
.clr-or::after { right: 0; }

.clr-form label {
	display: block;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 4px;
	color: #333;
}

.clr-form input[type="text"],
.clr-form input[type="email"],
.clr-form input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.clr-btn-primary {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 11px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}
.clr-btn-primary:hover { background: #1d4ed8; }
.clr-btn-primary:disabled { background: #93b4f5; cursor: not-allowed; }
