html, body, * {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-stretch: normal;
}

html, body {
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	width: 100%;
	background-color: #3a81c4;
}

.loader {
    position: relative;
    margin: auto auto;
    width: 80px;
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.card {
    border: solid 1px #b2b2b2;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 10px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.34);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

#register {
    margin: auto;
    position: absolute;
    top: -100px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 420px;
    min-width: 300px;
    max-width: 350px;
    padding: 20px;
}

#login {
	margin: 100px auto;
    width: 50%;
    min-width: 300px;
    max-width: 350px;
    padding: 20px 40px;
}

    #login .info-message {
        margin-right: 20px;
        margin-bottom: 20px;
    }

#sign-in-logo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.fmc-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

#login .validation-summary-errors {
    margin: 0;
    padding: 0;
    background: #fccac2 url('themes/base/images/icon_error.gif') no-repeat 0px 0px;
}

.validation-summary-errors ul {
    margin: 0;
    padding: 0;
}

.validation-summary-errors ul li {
    list-style-type: none;
    margin-left: 20px;
    padding: 1px;
}

h2 {
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #000;
	line-height: 0.3em;
	margin: 10px 0 20px;
}

h2 span {
	background: #fff;
	padding: 0 10px;
}