.sfeb-wrap {
	max-width: 560px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}
.sfeb-header {
	background: #b04a10;
	color: #fff;
	padding: 24px 28px;
	border-radius: 10px 10px 0 0;
}
.sfeb-header h2 {
	margin: 0 0 8px;
	font-size: 1.4em;
	color: #fff;
}
.sfeb-header p { margin: 4px 0; opacity: .9; }
.sfeb-entrada { font-size: .9em; opacity: .8; }

.sfeb-form {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 24px 28px;
}
.sfeb-row {
	margin-bottom: 18px;
}
.sfeb-row label {
	display: block;
	font-weight: 600;
	font-size: .9em;
	margin-bottom: 6px;
	color: #444;
}
.sfeb-row.sfeb-required label span {
	color: #c0392b;
	margin-left: 2px;
}
.sfeb-row input[type="text"],
.sfeb-row input[type="date"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1em;
	box-sizing: border-box;
	transition: border-color .2s;
}
.sfeb-row input:focus {
	border-color: #b04a10;
	outline: none;
}
.sfeb-submit {
	margin-top: 24px;
}
.sfeb-submit button {
	background: #b04a10;
	color: #fff;
	border: none;
	padding: 13px 28px;
	border-radius: 6px;
	font-size: 1em;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
	transition: background .2s;
}
.sfeb-submit button:hover { background: #8e3a0c; }

.sfeb-msg-error {
	background: #fdecea;
	border-left: 4px solid #c0392b;
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
	font-size: .9em;
	color: #a93226;
}

.sfeb-box {
	max-width: 560px;
	margin: 0 auto;
	padding: 28px 32px;
	border-radius: 10px;
	font-family: Arial, sans-serif;
}
.sfeb-success {
	background: #eafaf1;
	border: 1px solid #a9dfbf;
	color: #1e8449;
}
.sfeb-success h3 { margin-top: 0; }
.sfeb-error {
	background: #fdecea;
	border: 1px solid #f1948a;
	color: #a93226;
}
