﻿@font-face {
    font-family: "eszFont";
    src: url('../fonts/eszRegular.ttf');        
}

@font-face {
    font-family: "eszFont_IE";
    src: url('../fonts/eszRegular.eot');        
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "eszFont","eszFont_IE";
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

body {
    color: #fff;
    font-size: 12pt;
    padding-bottom: 20px;
    background: #c2531e;
    background-image: url('/images/ce_bg.jpg');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: 50% 0;   
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align:center;
}

.header-image {
    background: #c2531e;
    background-image: url('/images/ce_stripe.jpg');
    background-size: cover;
    background-repeat:no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.headline {
    margin: 40px;
    font-weight: 300;
    text-align: center;
}

.login-mask {
    display: block;
    max-width: 400px;
    background: rgba(0,0,0,0.3);
    margin: 0 auto;
    min-height: 200px;
    border: 1px solid rgba(1,1,1,0.15);
    border-radius: 15px;
    padding: 20px;
}

.row {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.col-1-3 {
    width: 33.333%;
    display: inline-block;
    float:left;
}

.col-2-3 {
    width: 66.666%;
    display: inline-block;
    float:left;
}

.w-100 {
    width: 100% !important;
}

.d-inline {
    display: inline !important;
}

.text-danger {
    color: #ff6666 !important;
}

.float-right {
    float:right;
}

.float-left {
    float:left;
}

.text-left {
    text-align:left;
}

.text-right {
    text-align:right;
}

.text-center {
    text-align: center;
}

button {
    background-color: rgba(231,129,1,0.7);
    border-radius: 6px;
    color: #fff;
    border: 1px solid rgba(231,129,1,0.3);
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
}
    button:hover {
        border: 1px solid rgba(231,129,1,1);
        box-shadow: 0 0 6px 3px rgba(231,129,1,0.3);
        cursor:pointer;
    }

input[type=password], input[type=text], input[type=email] {
    background-color: rgba(231,129,1,0.7);
    border-radius: 6px;
    color: #fff;
    outline: 0;
    border: 1px solid rgba(231,129,1,0.3);
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
}

    input[type=password]:active,
    input[type=text]:active,
    input[type=email]:active,
    input[type=password]:focus,
    input[type=text]:focus,
    input[type=email]:focus {
        border: 1px solid rgba(231,129,1,1);
        box-shadow: 0 0 6px 3px rgba(231,129,1,0.3);
    }

label + input[type=email], label + input[type=password] {
    margin-top: 5px;
}