body {
    color: #262626;
    font-size: 15px;
    font-family: 'calibri', sans-serif;
    margin: 0;
}

.background {
    background: url(../images/banner.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.background-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.container {
    padding-top: 55px;
    width: 80%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    width: 200px;
    height:80px;
    margin-left: auto;
    margin-right: auto;
    background:url(../images/logo.png) top left no-repeat;
    margin-bottom: 10px;
}

.content {
    margin-top: 32px;
}

.tno {
    color: #767777;
    margin-top: 10px;
    text-align: center;
    font-size: 9px;
}

.tno a {
    color: #767777 !important;
    text-decoration: none;
}

input[type="text"],
input[type="number"],
input[type="button"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    font-size: 16px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    -webkit-appearance: none;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    margin-bottom: 16px;
    padding: 0 10px;
    border: solid 1px #2ba3ca;
}

input[type="button"],
input[type="submit"] {
    color: #fff;
    background-color: #2ba3ca;
    border: none;
    cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    text-decoration: none !important;
    background-color: #34c6f4;
}

input[type="button"],
input[type="submit"]:active {
    background-color: #2ba3ca;
}

input[type="checkbox"] {
    width: 15px;
}

a {
    color: #2ba3ca;
}

a:hover {
    color: #34c6f4;
}

.message,
.error {
    border-radius: 4px;
    padding:8px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    line-height:16px;
}

.message {
    border: #2ba3ca 1px solid;
    color: #000000;

}

.error {
    border: #C40009 1px solid;
    color: #C40009;
}