﻿html
{
    font-family: 'Source Sans Pro','Open Sans',"Trebuchet MS", Arial , Helvetica , Verdana;
    font-size: 12px;
}

input
{
    font-family: 'Source Sans Pro','Open Sans',"Trebuchet MS", Arial , Helvetica , Verdana;
}

body
{
    margin: 0;
}

div
{
    box-sizing: border-box;
}

.contentContainer
{
    position: relative;
    margin: 40px auto;
    top: 60px;
    width: 500px;
    color: #000;
}

.branding
{
    text-align: center;
    position: relative;
}

.branding > .logo
{
    background: url("Images/Marval-logo.svg") no-repeat;
    background-position: top center;
    height: 52px;
    width: 227px;
    margin: 0 auto;
}

.branding > .version
{
    font-size: 0.8em;
}

.branding > .tagLine
{
    font-size: 1.5em;
    letter-spacing: 1px;
    margin: 10px 0;
}

input[type='submit'].submit
{
    margin: 0;
    padding: 0 15px;
    height: 38px;
    line-height: 38px;
    border: 0;
    background: #2db8e4;
    filter: none;
    color: #fff;
    font-size: 1.5em;
    -webkit-appearance: none;
    border-radius: 0;
    width: 100%;
}

input[type='submit'].submit:hover
{
    background: #073F5C;
}

.loginContainer
{
    border: 1px solid #FFF;
    border-radius: 2px;
    padding: 20px;
    width: 350px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 60px;
    background: #fff;
    box-shadow: 0 0 9px #D5D5D5;
}

.loginContainer .forgottenPassword 
{
    text-align: center;
}

.basicAuth,
.sso 
{
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}

.basicAuth > .inputHeading
{
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.basicAuth > .input
{
    padding: 5px;
    font-size: 1.1em;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 2px;
}

.error
{
    margin-bottom: 10px;
    font-size: 1.1em;
    text-align: center;
    color: #f00;
}

.hr-label
{
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.hr-label::before
{
    border-top: 1px #D5D5D5 solid;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.hr-label span
{
    display: inline-block;
    position: relative;
    padding: 0 10px;
    background-color: #fff;
    font-size: 1.3em;
    text-transform: uppercase;
}

.sso
{
    text-align: center;
}

.sso h2
{
    font-weight: 500;
    font-size: 1.2em;
    margin-top: 0;
    color: #000;
    padding: 0;
}

.sso ul
{
    list-style: none;
    padding: 0;
}

.sso ul > li
{
    text-align: center;
    font-size: 1.1em;
    margin-top: 10px;
}

.sso a
{
    text-decoration: none;
}