﻿* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    background: url('../images/Background.png') repeat fixed;
    font-family: Tahoma;
    font-weight: 200;
    float:right;
}

.login {
    display: table;
    background-color: #9acee7;
    border: solid;
    border-color: #347da0;
    border-radius: 4px;
    top: 40px;
    width: 500px;
    margin-left: 30%;
    margin-top: 2%;
}

.legend {
    position: relative;
    width: 100%;
    display: block;
    background: #347da0;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    font-family: Tahoma;
    text-align: right;
}

    .legend:after {
        content: "";
        background-image: url('../images/logo.gif');
        background-size: 50px 50px;
        background-repeat: no-repeat;
        background-position: 20px -1px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
    }

.input {
    position: relative;
    width: 80%;
    margin: 20px auto;
    font-family: Tahoma;
}

    .input span {
        position: absolute;
        display: block;
        color: #d4d4d4;
        left: 10px;
        top: 8px;
        font-size: 20px;
    }

    .input input {
        width: 100%;
        padding: 10px 5px 10px 40px;
        display: block;
        border: 1px solid #EDEDED;
        border-radius: 4px;
        transition: 0.2s ease-out;
        color: #696565;
        font-family: Tahoma;
        text-align: right;
    }

        .input input:focus {
            padding: 10px 5px 10px 10px;
            outline: 0;
            border-color: #FF7052;
        }

.submit {
    width: 65px;
    height: 65px;
    display: block;
    margin: 0 auto -15px auto;
    background: #FF6633;
    border-radius: 100%;
    border: 1px solid #FF6633;
    color: #fff;
    font-size: 18px;
    font-family: Tahoma;
    cursor: pointer;
    box-shadow: 0px 0px 0px 7px #fff;
    transition: 0.2s ease-out;
}

    .submit:hover,
    .submit:focus {
        background: #e75e30;
        color: #fff;
        outline: 0;
    }

.feedback {
    position: absolute;
    bottom: -70px;
    width: 100%;
    text-align: center;
    color: #fff;
    background: #2ecc71;
    padding: 10px 0;
    font-size: 12px;
    display: none;
    opacity: 0;
}

    .feedback:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(46, 204, 113, 0);
        border-bottom-color: #2ecc71;
        border-width: 10px;
        margin-left: -10px;
    }
