﻿font-face {
    font-family: 'Open-Sans';
    src: url('../../../../Content/AWE/fonts/OpenSans-Regular-webfont.eot');
    src: url('../../../../Content/AWE/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), 
         url('../../../../Content/AWE/fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('../../../../Content/AWE/fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../../../../Content/AWE/fonts/OpenSans-Regular-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

font-face {
    font-family: 'Open-Sans-SemiBold';
    src: url('../../../../Content/AWE/fonts/OpenSans-Semibold-webfont.eot');
    src: url('../../../../Content/AWE/fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'), 
         url('../../../../Content/AWE/fonts/OpenSans-Semibold-webfont.woff') format('woff'),
         url('../../../../Content/AWE/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
         url('../../../../Content/AWE/fonts/OpenSans-Semibold-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

body, html {
    height: 100%;
    min-width: 1024px;
    margin: 0;
    font-family: "Lato-Light", 'Open-Sans',sans-serif;
}

html {
    background: url('/Content/AWE/AWE-styles/img/backgroundImage.jpg') no-repeat #e4e4e4;
    background-size: cover;
    color: #051b1f;
}

h1, h2, a {
    color: inherit;
}

p {
    font-size: 14px;
    color: #666;
    padding: 24px 0;
    margin: 0;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #cd2129;
}

.field-validation-error {
    color: #cd2129;
}

.outer {
    display: table;
    width: 100%;
    height: 100%;
}

.inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.centered {
    display: inline-block;
    width: 100%;
}

#loginForm .centered {
    width: 530px;
}

input[type="text"], input[type="password"] {
    background: white;
    border: 1px solid #b9cad1;
    color: #666666;
    font-size: 16px;
    height: 48px;
    margin-bottom: 4px;
    padding: 0 15px;
    width: calc(100% - 32px);
}

input {
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-transition: background-color ease-in-out 0.45s;
    -moz-transition: background-color ease-in-out 0.45s;
    -o-transition: background-color ease-in-out 0.45s;
    transition: background-color ease-in-out 0.45s;
    outline: none;
    width: 100%;
}

    input:focus {
        outline: none;
    }

input[type="button"] {
        background: url('/Content/AWE/AWE-styles/img/buttonArrowWhite.png') #4eaecd no-repeat right 0 center;
        background-position: 95% center;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 18px;
        height: 60px;
        padding: 0 15px;
        text-align: left;
        margin-top: 25px;
    }

.field-validation-error {
    color: #cd2129;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 5px;
    display: block;
}

.field-validation-success {
    color: #55b000;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 5px;
    display: block;
}

.login-form {
    max-width: 370px;
    margin: 0 auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.validation-summary-errors {
    color: #cd2129;
    font-size: 14px;
    margin-bottom: 20px;
}

#loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
}

.spinner {
    -webkit-animation: rotation 0.6s infinite linear;
    animation: rotation 0.6s infinite linear;
    border-left: 4px solid rgba(100, 200, 200, 0.2);
    border-right: 4px solid rgba(100, 200, 200, 0.2);
    border-bottom: 4px solid rgba(100, 200, 200, 0.2);
    border-top: 4px solid #64c8c8;
    border-radius: 100%;
    z-index: 9999;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -30px;
    margin-top: -30px;
    background-color: transparent;
    position: absolute;
    display: block;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
