* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    display: table;
}

body {
    vertical-align: middle;
    display: table-cell;
    background: url("../images/background.jpg") no-repeat center;

    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

form {
    width: 30em;
    margin: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

button, input {
    margin: 0;
    font: inherit;
    color: inherit;
}

input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    color: #555;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;

    border: 1px solid #ccc;
    border-radius: 4px;

    color: #333;
    background: #fff;

    text-transform: none;
    overflow: visible;

    -ms-touch-action: manipulation;
    touch-action: manipulation;

    -webkit-user-select: none;
    -moz-user-select: none;

    -ms-user-select: none;
    user-select: none;

    -webkit-appearance: button;
    cursor: pointer;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

div.title{
	text-align:center;
}

div.message{
	text-align:center;
	color: #a94442;
}

div.errorMessage{
	text-align:center;
	color: #a94442;
	background-color: #f2dede;
}