﻿@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */

body {
    background-color: #024C5B;
    color: #fff;
}

p {
    margin-bottom: 10px;
}

input {
    font-size: 15px;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}

/* ---------- LOGIN ---------- */

#login-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../Images/Login-BG.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/login-bg.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/login-bg.jpg', sizingMethod='scale')";*/
}

#login {
    margin: 200px auto;
    width: 300px;
}
    #login a {
        color: #fff;
    }

    #login a.dimmed {
        color: gray;
    }

    #login span.fontawesome {
        color: #024C5B;
        height: 40px;
        line-height: 40px;
        position: absolute;
        text-align: center;
        width: 36px;
    }

    #login a.fontawesome {
        color: #024C5B;
    }

    #login span.fontawesome .fa { 
        vertical-align: 0%;
    }

    #login input {
        border: none;
        height: 40px;
    }

    #login .logo {
        margin-bottom: 20px;
    }

    #login input[type="text"] {
        background-color: #fff;
        color: #333;
        margin-bottom: 10px;
        padding-left: 46px;
        padding-right: 46px;
        width: 204px;
    }

    #login input[type="password"] {
        background-color: #fff;
        color: #333;
        margin-bottom: 10px;
        padding-left: 46px;
        padding-right: 46px;
        width: 204px;
    }

    #login input[type="submit"] {
        background-color: #01C4C5;
        color: #fff;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        width: 300px;
        margin-bottom: 15px;
        cursor: pointer;
    }

    #login input[type="submit"]:hover {
        background-color: #33a4a6;
    }

    #login span.field-validation-error {
        color: #FFD86A !important;
        margin: 0 0 10px 0;
        display: block;
    }

    #login span.field-validation-confirm {
        margin: 0 0 10px 0;
        display: block;
    }

    #login h2 {
        font-weight: bold;
        line-height: 2em;
        color: #01C4C5;
        font-size: 1.5em;
    }

#SubmitButton {
    margin-top: 15px;
}

.input-validation-error {
    border: 1px solid red !important;
    background-color: #ffeeee !important;
}

.validation-summary-errors {
    color: #FFD86A !important;
    font-weight: bold;
}

input#CaptchaInputText {
    text-align: center;
    padding: 0 !important;
    width: 300px !important;
    margin-top: 5px;
}

img#CaptchaImage {
    width: 300px !important;
    margin-bottom: 5px;
}

@media (max-width:400px) {
    #login {
        margin: 50px auto;
    }
}
