/*CSS RESET*/
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,
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;
    height: 100%;
}

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;
}


.form-container h1 {
    background-color: rgba(255, 153, 85, 1);
    padding: 20px 0;
    font-size: 130%;
    font-weight: 300;
    text-align: center;
    color: #000;
    margin: -16px -16px 16px -16px;
}

.form-container {
    font: 95% Arial, Helvetica, sans-serif;
    max-width: 750px;
    margin: 10px auto;
    padding: 16px;
    background-color: rgba(255, 230, 213, 0.8);
}

.form-container form h1{
    background: #43D1AF;
    padding: 20px 0;
    font-size: 140%;
    font-weight: 300;
    text-align: center;
    color: #fff;
    margin: -16px -16px 16px -16px;
}
.form-container form input[type="text"],
.form-container form input[type="date"],
.form-container form input[type="datetime"],
.form-container form input[type="email"],
.form-container form input[type="number"],
.form-container form input[type="search"],
.form-container form input[type="time"],
.form-container form input[type="url"],
.form-container form input[type="file"],
.form-container form input[type="password"],
.form-container form textarea,
.form-container form select 
{
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background: #fff;
    margin-bottom: 4%;
    border: 1px solid #ccc;
    padding: 3%;
    color: #555;
    font: 95% Arial, Helvetica, sans-serif;

}
.form-container form input[type="text"]:focus,
.form-container form input[type="date"]:focus,
.form-container form input[type="datetime"]:focus,
.form-container form input[type="email"]:focus,
.form-container form input[type="number"]:focus,
.form-container form input[type="search"]:focus,
.form-container form input[type="time"]:focus,
.form-container form input[type="url"]:focus,
.form-container form input[type="password"]:focus,
.form-container form textarea:focus,
.form-container form select:focus
{
    box-shadow: 0 0 5px #43D1AF;
    padding: 3%;
    border: 1px solid #43D1AF;
}

.form-container form input[name="username"],
.form-container form input[name="username"]:focus{
    background-image: URL(img/icons/if_208-User_2124123.png);
    background-repeat: no-repeat;
    background-position: 6px 6px;
    padding-left: 25px;
}
.form-container form input[name="password"],
.form-container form input[name="password"]:focus{
    background-image: URL(img/icons/if_271-Security_2124150.png);
    background-repeat: no-repeat;
    background-position: 6px 6px;
    padding-left: 25px;
}

.form-container form input[type="submit"],
.form-container form input[type="submit"], 
.form-container form input[type="button"] {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    padding: 3%;
    background: rgba(255, 212, 42, 0.7);
    border-bottom: rgb(255, 153, 85) 3px solid;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    color: #000;
    font-weight: bold;
}

.form-container form input[type="submit"]:hover,
.form-container form input[type="button"]:hover{
    background: rgba(255, 212, 42, 1);
    cursor: pointer;
}

.row {
    padding: 1%;
}

.column {
    float: left;
}

.column-half {
    width: 48%;
    margin-left: 1%;
}

/**/
body {
    background-color: #ffeeaaff;
}

#middle {
    width: 900px;
    height: 600px;
    position: absolute;
    left: calc(50% - 450px);
    margin: 200px auto;
    text-align: center;
    font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    z-index: 1;
}

#left {
    background-image: url("img/left.svg");
    background-position: right center;
    left: 0;	
    background-repeat: no-repeat;
    background-size: auto 110%;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: calc(50% - 450px);
}

#right {
    background-image: url("img/right.svg");
    background-position: left center;
    right: 0;
    background-repeat: no-repeat;
    background-size: auto 110%;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: calc(50% - 450px);
}

#main {
    height: 100%;
}

.form-error {
    font-size: 110%;
    color: red;
}

.form-success {
    font-size: 110%;
    color: green;
}

#file-info {
    text-align: left;
}

table {
    margin: 0 0 40px 0;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

table thead tr th, table tfoot tr th {
    font-weight: 700;
    background: rgb(233, 221, 175);
    padding: 6px 10px;
    text-align: left;
}

table tbody tr td {
    padding: 6px 10px;
    text-align: left;
    font-weight: 400;
}

section > h2 {
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
}

table tbody tr {
    background: #e9e9e9;
}

table tbody tr:nth-of-type(odd) {
    background: #f6f6f6;
}