﻿@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
    margin: 0 auto;
    background: #fff;
    color: #fff;
    font-family: Arial;
    font-size: 12px;
}

.body {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    background-image: url(Images/winterMountain1.jpg);
    background-size: cover;
    -webkit-filter: blur(3px);
    z-index: 0;
}
.blur {
    filter: blur(14px); /* Someday, sigh ... */
    -webkit-filter: blur(14px); /* Prefixed CSS3 blur filters */
    -moz-filter: blur(14px);
    -o-filter: blur(14px);
    -ms-filter: blur(14px);
    filter: url(#blur); /* Firefox needs SVG */
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='14'); /* IE lte 9 */
}

.grad {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
    z-index: 1;
    opacity: 0.7;
}

.header {
    position: fixed;
    top: calc(42% - 33px);
    left: calc(50% - 260px);
    z-index: 2;
}

    .header div {
        float: left;
        color: #fff;
        text-shadow: 2px 2.5px 1px rgba(0,0,0,0.99);
        font-size: 36px;
        font-weight: 700;
    }

        .header div span {
            color: #006699 !important;
        }

.login {
    position: fixed;
    top: calc(40% - 75px);
    left: calc(53% - 50px);
    height: 150px;
    width: 350px;
    padding: 15px;
    z-index: 2;
}

    .login input[type=text] {
        width: 250px;
        height: 30px;
        background: rgba(255, 255, 255, 0.49);
        border: 1px solid rgba(48, 48, 48, 0.90);
        border-radius: 2px;
        color: #000;
        font-family: 'Exo', sans-serif;
        font-size: 17px;
        font-weight: 400;
        padding: 4px;
        cursor:text;
    }

    .login input[type=password] {
        width: 250px;
        height: 30px;
        background: rgba(255, 255, 255, 0.49);
        border: 1px solid rgba(48, 48, 48, 0.90);
        border-radius: 2px;
        color: #000;
        font-family: 'Exo', sans-serif;
        font-size: 17px;
        font-weight: 400;
        padding: 4px;
        margin-top: 10px;
    }

/* Login button */
.button1 {
    width: 260px;
    height: 35px;
    background: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 2px;
    color: #006699; /* blue */
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 6px;
}

    .button1:hover {
        opacity: 0.6;
        color: #23b1a5;
    }

    .button1:active {
        opacity: 0.6;
    }

.login input[type=text]:focus {
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus {
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=button]:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
    color: rgba(255,255,255,0.6);
}

.select1 {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.select1::-ms-expand {
    display: none;
}