.rvs-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rvs-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--rvs-text-main);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rvs-input,
.rvs-select,
.rvs-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--rvs-border-color);
	border-radius: var(--rvs-radius-sm);
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	color: var(--rvs-text-main);
	transition: var(--rvs-transition);
	box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.rvs-input:focus,
.rvs-select:focus,
.rvs-textarea:focus {
	outline: none;
	border-color: var(--rvs-border-focus);
	box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.12);
}

.rvs-input::placeholder,
.rvs-textarea::placeholder {
	color: #94a3b8;
}

.rvs-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.rvs-select:disabled,
.rvs-input:disabled {
	background-color: var(--rvs-bg-light);
	color: #94a3b8;
	cursor: not-allowed;
	opacity: 0.8;
}

.rvs-quote-form {
	background: var(--rvs-bg-card);
	padding: 32px;
	border-radius: var(--rvs-radius-lg);
	box-shadow: var(--rvs-shadow-md);
	border: 1px solid var(--rvs-border-color);
}

.rvs-vehicle-summary-chip {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 12px 16px;
	border-radius: var(--rvs-radius-md);
	margin-bottom: 24px;
	font-size: 15px;
}

.rvs-form-message {
	margin-bottom: 20px;
	padding: 14px;
	border-radius: var(--rvs-radius-md);
	font-weight: 500;
	display: none;
}
.rvs-form-message.is-success {
	display: block;
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}
.rvs-form-message.is-error {
	display: block;
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
