﻿* {
	box-sizing: border-box;
}

html {
	height: 100%;
	width: 100%;
}

body {
    padding: 0;
    margin: 0;
    background: #5957a2 url(images/login-bg-01.png) no-repeat;
    background-position:  bottom -200px right -100px;
    height: 100%;
    width: 100%;
    background-size: 500px auto;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    color: #ffffff;
    height: 100%;
}


.body-content > .row,
.body-content > .row > [class*=col] {
	height: 100%;
}

.branding {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.branding:after {
	width: 2px;
	height: 80%;
	background: rgba(255,255,255,0.3);
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.title,
.sub-title {
	color: #ffffff;
}

.sub-title {
	font-weight: 400;
}

.login-form {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.form-header {
	text-align: center;
	margin-bottom: 20px;
}

.form-wrap {
	width: 300px;
}

#submitbutton {
	transition: all 0.3s;
	color: #ffffff;
	width: 100%;
	background: #2bb2c5;
	border: 1px solid #2bb2c5;
}

#submitbutton:hover {
	color: #2bb2c5;
	background: transparent;
}


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set padding to display errors that occur during databinding */
.padding-error {
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .nofloat {
        float: none;
        padding: 10px 15px;
    }
}