.srf-form-wrapper {
	/* max-width: 420px; */
	margin: 0 auto;
	background: #fff;
	border-radius: 6px;
	padding: 10px;
	border: 1px solid #e4e4e4;
	/* box-shadow: 0 2px 10px rgba(0,0,0,0.06); */
}
.srf-field {
	margin-bottom: 14px;
}
.srf-field input,
.srf-field select,
.srf-field textarea {
	width: 100%;
    padding: 8px 16px !important;
    border: 1px solid #E4E4E4 !important;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    box-sizing: border-box;
    font-family: inherit;
}
.srf-field textarea {
	resize: vertical;
}
.srf-field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
}
.srf-submit-btn {
	width: 100%;
	background: #E85517;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}
.srf-submit-btn:hover {
	background: #f76d32;
}
.srf-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.srf-message {
	padding: 12px 16px;
	border-radius: 10px;
	margin-bottom: 14px;
	font-size: 14px;
}
.srf-message.success {
	background: #e7f7ec;
	color: #1e7a34;
}
.srf-message.error {
	background: #fdeaea;
	color: #b32d2e;
}
.srf-error{
	font-size: 12px;
	color: #b32d2e;
}