/* RESET CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CUSTOM */
body {
    font-size: 12px;
    font-family: Verdana, "sans-serif";
}

.header {
    width: 100%;
    padding: 10px;
    border-top: 10px solid #ea5c2b;
    color: #ffffff;
    background: #00974d;
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, .75);
    text-align: center;
}

h3 {
    font-size: 20px;
    line-height: 1.4;
}

.container {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 40%;
    padding: 3%;
    background: #ffffff;
}

.form-ctrl {
    width: 100%;
    margin-bottom: 12px;
}

.form-ctrl label {
    margin-bottom: 3px;
    font-weight: bold;
    display: block;
}

.form-ctrl input,
.form-ctrl select {
    padding: 7px;
    width: 100%;
    border: 1px solid #cacaca;
    border-radius: 3px;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, .1);
}

.btn {
    border: none;
    border-radius: 0;
    background: #00974d;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.msg {
    padding: 10px;
    text-align: center;
}