* {
    box-sizing: border-box;
    font-family: inherit;
    font-family: FSHumanaLight,arial,sans-serif;
    color: rgb(72, 70, 65);
}

body {
    background: #eee;
    margin: 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

h1 {
    color: #fff;
    font-size: 4.5rem;
    font-family: FSHumanaBold, Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-align: center;
    display: block;
    background: rgba(72, 70, 65, 1);
    width: 8.5rem;
    margin: 1rem auto;
    line-height: 8.5rem;
    box-shadow: 0 0 1rem rgba(255,255,255,.5);
    position: relative;
    z-index: 2;
}

em {
    font-style: normal;
    color: #5c9a1b;
    font-family: FSHumanaBold,arial,sans-serif;
}

h2, h3, h4 {
    display: block;
    color: #5c9a1b;
    font-weight: normal;
    font-size: 1.4rem;
    margin: 1.5rem 0;
    text-align: center;
}

h4 {
    text-align: left;
    font-size: 1.4rem;
    color: inherit;
}

h2 span, h3 span {
    color: #5c9a1b;
}


p, li {
    line-height: 175%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.concepts li, ul.rejects li {
        opacity: 0;
    }

strong {
    font-weight: normal;
    font-family: FSHumanaBold,arial,sans-serif;
}

section {
    background: rgba(255,255,255,.95);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding: 1rem;
    position: relative;
    z-index: 0;
}

    section:before {
        content: "";
        position: absolute;
        top: -1rem;
        left: 50%;
        background: #eee;
        height: 2rem;
        width: 2rem;
        margin-left: -1rem;
        z-index: 1;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
    }

article + article {
    clear: both;
}

section .inner {
    max-width: 80rem;
    margin: 0 auto;
}

form {
    padding: 0;
    margin: 0;
}

    form#frmNewUser {
        float: right;
        min-width: 8rem;
        text-align: right;
        margin-top: -.2rem;
        margin-left: 1rem;
    }

fieldset {
    border: 0;
    margin: 0;
    padding: 0 0 1.3rem 0;
}

.form-wrapper {
    background: #eee;
    width: 40rem;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    max-width: 100%;
}

label {
    width: 19%;
    display: inline-block;
    font-size: 1.2rem;
    text-align: left;
}

input[type=text], input[type=password] {
    line-height: 2rem;
    padding: .8rem 1.2rem;
    width: 80%;
    border: 1px solid #ccc;
    font-family: FSHumanaLight,arial,sans-serif;
    color: #5c9a1b;
    font-size: 1.4rem;
}

.half input[type=text], .half input[type=password] {
    width: 100%;
}

input[type=text]:focus, input[type=password]:focus {
    box-shadow: 0 0 0.5rem rgba(0,0,0,.4);
}

input[type="submit"].primary {
    color: white;
    display: inline-block;
    font-family: FSHumanaBold, Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    padding: .5em 1em;
    margin: .5rem 0 0 0;
    border-radius: .5em;
    cursor: pointer;
    position: relative;
    border: 0;
    background: #236e37;
    background: -webkit-gradient(linear, left top, left bottom, from(#236e37), to(#1d5b2d));
    background: -webkit-linear-gradient(top, #236e37, #1d5b2d);
    background: -moz-linear-gradient(top, #236e37, #1d5b2d);
    background: -o-linear-gradient(top, #236e37, #1d5b2d);
    background: linear-gradient(to bottom, #236e37, #1d5b2d);
}


    input[type="submit"].primary:hover,
    input[type="submit"].primary:focus {
        background: #1d5b2d;
    }

a.primary,
input[name="ForgotPassword"] {
    background: transparent;
    border: 0;
    font-size: 1.1rem;
    color: #aa005f;
    border-bottom: 1px dotted;
    padding: 0;
    float: right;
    margin: 1rem 1.5rem;
}

.secondary {
    border-bottom: 1px dotted;
    color: #5c9a1b;
    text-decoration: none;
}


aside {
    background: #00A78E;
    position: relative;
    display: block;
    width: 62rem;
    margin: 1rem auto 1.5rem auto;
    padding: .9rem;
    font-size: 1.1rem;
    border: 0;
    line-height: 175%;
    color: #fff;
    max-width: 90%;
}

#error {
    background: rgba(170, 0, 95,.6);
    border: 1px solid #aa005f;
}

    #error:before, #error:after {
        display: none;
    }

aside a {
    text-decoration: none;
    border-bottom: 1px dotted;
    color: #fff;
}

aside:before, aside:after {
    position: absolute;
    content: "";
    width: 3rem;
    height: 3rem;
    top: -.3rem;
    left: -.3rem;
    z-index: -1;
    display: inline-block;
}

aside:after {
    top: auto;
    left: auto;
    right: -.3rem;
    bottom: -.3rem;
}

section.columns .inner {
    display: table;
    margin: auto auto;
    text-align: center;
}

.half {
    width: 49%;
    display: table-cell;
    padding: 1rem;
    vertical-align: top;
}

    .half label {
        width: 100%;
        padding: 0.5rem 0;
    }

    .half .form-wrapper {
        width: auto;
    }

    .half ul li {
        padding: .2rem 0;
    }

ul li.error {
    color: #aa005f;
    font-family: FSHumanaBold,arial,sans-serif;
}

div.errors {
    border: 1px solid #e5e5e5;
    padding: 0;
    position: relative;
    display: block;
    width: 40rem;
    font-size: 1.1rem;
    margin: 1.2rem auto 0.5em;
    padding: .9rem;
    border: 0;
    line-height: 1.5em;
    color: #fff;
    max-width: 90%;
    font-weight: 600;
    background-color: #b2030f;
}

    div.errors h3 {
        margin: 0;
        padding: 0;
        font-size: 1.1rem;
        background-color: #b2030f;
        background-clip: padding-box;
        font-weight: 600;
        color: #fff;
        text-align: center;
        outline:none;
    }

.half ul li:before {
    content: "\2022";
    color: #5c9a1b;
    font-size: 1.5rem;
    line-height: 2rem;
    position: relative;
    display: inline-block;
    padding: 0 .5rem;
    top: .1rem;
}

#tips {
    display: none;
    background: #f9f9f9;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
}

    #tips button {
        border: 0;
        border-bottom: 1px dotted;
        background: 0;
        cursor: pointer;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
    }

    #tips:before {
        display: none;
    }

.textAlignRight {
    text-align: right;
}

@media screen and (max-width: 600px) {

    .half {
        width: 100%;
        display: block;
    }

    h1 {
        font-size: 4rem;
        width: 7rem;
        height: 7rem;
        line-height: 7rem;
        margin: .5rem auto;
    }

    aside {
        font-size: 1rem;
        padding: .8rem;
        line-height: 120%;
    }

    h2, h3, h4 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
    }

        h3 span {
            display: none;
        }

    section {
        padding: .5rem;
    }

    .form-wrapper {
        padding: .5rem 1rem;
        margin-bottom: 1rem;
    }

    fieldset {
        padding: 0;
    }

    label, input[type=text], input[type=password] {
        width: 100%;
        line-height: 1.5rem;
        padding: .4rem;
        font-size: 1.1rem;
    }

    label {
        margin: .3rem 0 0 0;
        font-size: 1rem;
        padding: 0;
        font-family: FSHumanaLight,arial,sans-serif;
    }

    input[type=submit].primary {
        font-size: 1.1rem;
        margin: 0.5rem 0;
    }

    a.primary,
    input[name="ForgotPassword"] {
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
        line-height: 120%;
    }
}
