﻿/*----------------Global----------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 16px;
}

/*----------------Login----------------*/

body {
    background-color: black;
    background-image: url(/Images/LoginBG.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.clsLogin {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

    .clsLogin h1 {
        text-align: center;
        color: white;
        text-shadow: 0 0 4px black;
        font-size: 35px;
        margin-bottom: 40px;
    }

.clsLogin-Box {
    background-color: #665750;
    border-radius: 7px;
    overflow: hidden;
    width: 300px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, 0.75);
}

    .clsLogin-Box > p {
        color: white;
        text-align: center;
        padding: 15px;
    }

.clsLogin-Box-Form {
    background-color: white;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    position: relative;
}

    .clsLogin-Box-Form span {
        display: block;
        text-align: center;
        padding: 10px 5px;
        color: red;
        background-color: #f6f4f3;
    }

    .clsLogin-Box-Form p {
        text-align: center;
        color: #665750;
    }

        .clsLogin-Box-Form p:nth-child(odd) {
            margin-bottom: 3px;
        }

        .clsLogin-Box-Form p:nth-child(even) {
            margin-bottom: 15px;
        }

input[type=text], input[type=password], select {
    padding: 5px 7px;
    border: 1px solid #d5cecb;
    width: 190px;
    outline: none;
}

    input[type=text]:focus, input[type=password]:focus, select:focus {
        border: 1px solid #665750;
    }

input[type=submit] {
    border: 1px solid #665750;
    background-color: #665750;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

input[type=button] {
    border: 1px solid #665750;
    background-color: #665750;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.clsLoading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255,0.8);
}

    .clsLoading img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
