/* NRE Off-Market CRM — Frontend form styles v1.0.0 */

.nre-form-wrap {
	max-width: 560px;
}

.nre-form-title {
	margin-bottom: 20px;
}

.nre-form-message {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	font-size: 15px;
}

.nre-message--success {
	background: #d7f0dd;
	color: #1a6830;
	border: 1px solid #a3d9b1;
}

.nre-message--error {
	background: #fde8e8;
	color: #8a1f1f;
	border: 1px solid #f5aaaa;
}

.nre-field {
	margin-bottom: 18px;
}

.nre-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 14px;
}

.nre-field input[type="text"],
.nre-field input[type="tel"],
.nre-field input[type="email"],
.nre-field select {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.15s;
}

.nre-field input:focus,
.nre-field select:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.18);
}

.nre-req {
	color: #c00;
}

.nre-radio {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
	font-weight: 400;
	cursor: pointer;
}

.nre-radio input[type="radio"] {
	margin: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.nre-submit-btn {
	display: inline-block;
	padding: 11px 28px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.nre-submit-btn:hover {
	background: #135e96;
}

.nre-submit-btn:disabled {
	background: #8ab4d8;
	cursor: not-allowed;
}
