﻿body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    background-color: lightgray;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#login_box {
    width: 450px;
    height: 500px;
    top: 100px;
    left: 50%;
    margin-left: -225px;
    background-color: white;
    position: absolute;
    border-radius: 10px;
    box-shadow: gray 0px 0px 10px;
}

#logo {
    text-align: center;
    margin-top: 50px;
}

.seprator {
    height: 55px;
    display: inline-block;
    border-left: 3px solid black;
    margin-left: 10px;
    margin-right: 10px;
}

#logo_text {
    font-family: Calibri, Tahoma, 'Times New Roman';
    font-size: 50px;
    display: inline-block;
    vertical-align: top;
}

#controls {
    padding-top: 80px;
}

.lable {
    font-weight: bold;
    width: 100px;
    text-align: right;
    display: inline-block;
    font-size: small;
    color: #262626;
    margin-bottom: 30px;
}

.input {
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 0 #e3e3e3;
    height: 24px;
    padding-left: 7px;
    width: 50%;
    margin-left: 10px;
    color: #555;
    transition: border-color linear 0.5s;
}

    .input:focus {
        border-color: #569ae9;
        outline: 0px;
    }


.checkBox {
    padding-left: 10px;
    font-size: small;
}

.button {
    background-color: #569ae9;
    color: #fff;
    font-weight: 300;
    border: none;
    padding: 5px 8px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
    width: 120px;
    cursor: pointer;
}

    .button:hover {
        background-color: #3284e4;
        box-shadow: 0 2px #e3e3e3;
        color: #fff;
    }

    .button:focus {
        outline: 0px;
    }

#error {
    margin: 10px;
    text-align: center;
    color: red;
    font-size: small;
    height: 75px;
    overflow: hidden;
}

#footer {
    vertical-align: bottom;
    color: gray;
    font-size: x-small;
    text-align: center;
    bottom: 10px;
    position: absolute;
    width: 100%;
}

#image_box {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 10%;
    top: 180px;
    position: absolute;
    left: 50%;
    margin-left: 150px;
    overflow:hidden;
    box-shadow: gray 0px 0px 10px;
    display: none;
}


@media screen and (max-width: 500px) {
    #login_box {
        width: 100%;
        height: 100%;
        margin: 0px;
        position: fixed;
        border-radius: 0px;
        top: auto;
        left: auto;
    }

    #image_box {
        display: none;
    }
}
