﻿@import url("../lib/font-awesome-4.7.0/css/font-awesome.min.css");

body {
    background-image: url("../images/Login-background-unsplash.jpg");
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn't tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based
     on the container's size */
    background-size: cover;
    /* Set a background color that will be displayed
     while the background image is loading */
    background-color: #464646;
}

div.main {
    background: #0264d6;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%, #0264d6), color-stop(100%, #1c2b5a));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, #0264d6 1%, #1c2b5a 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0264d6', endColorstr='#1c2b5a',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
    height: calc(100vh);
    width: 100%;
}

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */
a {
    color: #eee;
    text-decoration: none;
    white-space: nowrap;
}

    a:hover {
        text-decoration: underline;
    }

input, button, submit, a {
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.5em;
    padding: 0;
    -webkit-appearance: none;
}

p {
    line-height: 1.5em;
}

.clearfix {
    *zoom: 1;
}

    .clearfix:before, .clearfix:after {
        content: ' ';
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

.LoginContainer {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */
#login form {
    width: 250px;
}

#login {
    padding: 15px 0px;
    width: 100%;
}

.logo {
    border-bottom: 1px solid #fff;
    width: 250px;
    height: 105px;
    padding-bottom: 20px;
}

    .logo img {
        width: 250px;
        height: 75px;
    }

input#user, input#pass, input#password, input#UserName, input#Email, input#NewPassword, input#NewPasswordConfirmed {
    width: 200px;
}

#login form span.fa:not(.btn-goBack) {
    background-color: #fff;
    border-radius: 3px 0px 0px 3px;
    color: #000;
    display: block;
    float: left;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

#login form input {
    height: 50px;
}

fieldset {
    padding: 0;
    border: 0;
    margin: 0;
}

#login form input[type="text"], input[type="password"] {
    background-color: #fff;
    border-radius: 0px 3px 3px 0px;
    color: #000;
    padding: 0 16px;
}

#login form button[type="button"], #login form button[type="submit"], a.btn-goBack {
    color: #eee;
    font-weight: bold;
    /* margin-bottom: 2em; */
    text-transform: uppercase;
    padding: 5px 10px;
    height: 40px;
    width: 150px;
}

#login > p {
    text-align: center;
}

    #login > p span {
        padding-left: 5px;
    }

.middle {
    display: flex;
    width: 250px;
}

.alert-warning ul {
    display: contents;
}

.alert-warning li {
    display: flex;
}

    .alert-warning li:before {
        content: "\f071";
        /* FontAwesome Unicode */
        font-family: FontAwesome;
        display: inline-block;
        /*margin-left: 20px;*/
        width: 40px;
    }

.text-warning {
    margin-bottom: 20px;
    display: block;
}

.alert-warning {
    padding: .75rem .25rem;
}
