﻿input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset;
}

    input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 50px white inset;
    }

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.login {
    margin: 30px auto 0;
    width: 268px;
    padding: 10px 30px 30px 30px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.login-fade {
    margin: 10px auto 0;
    width: 268px;
    padding: 25px 30px 30px 30px;
    background: white;
    border: 1px solid #ccc;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
    border-radius: 10px;
    height:90px;
}

/*Fade in*/
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1.login-title {
    margin: 0 0px 20px 0;
    /*margin: -28px -25px 20px;*/
    padding: 15px 25px;
    font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #232323;
    text-align: center;
    /*background: #E7EDF6;*/
    border-bottom: solid 1px #e5e5e5;
}

.login-input {
    width: 262px;
    height: 35px;
    margin-bottom: 15px;
    padding-left: 6px;
    font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    border:none;
    border-bottom: 1px solid #CCC;
}

    .login-input:focus {
        outline: none;
    }

.login-button {
    width: 272px;
    height: 40px;
    padding: 0;
    font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    background: slategray;
    border: 1px solid #555;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 3px;
}

    .login-button:hover, .login-button:focus {
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        transition: box-shadow 0.3s ease-in-out;
    }


.login-lost {
    text-align: center;
    margin-bottom: 0px;
    cursor: pointer;
    font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555555;
}

    .login-lost a {
        color: #666;
        text-decoration: none;
        font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: #555555;
    }

.drpDown {
    cursor: pointer;
    background-color: #FFFFFF;
    font-family: 'Segoe UI',verdana,helvetica,arial,sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555555;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-shadow: 0 1px #fff;
    box-sizing: border-box;
    height: 40px;
    margin-bottom: 15px;
    padding-left: 6px;
    transition: box-shadow 0.3s;
    width: 100%;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/arrow_drop_down.png");
    background-repeat: no-repeat;
    background-position: right center;
}

label.floatLabel {
    top: -11px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}