/* Google fontti */
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,500);
body.loginscreen { background-color: transparent; font-family: 'Ubuntu', sans-serif; }


/* Kirjautumispaneelin tyylit */
#loginPanel {
    margin-top: 25px;
}
#loginPanel .well {
    background-image: url('img/decor_rengas.png');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #fff;
    min-height: 220px;
    padding-top: 30px;
    padding-bottom: 60px;
    border-radius: 0 0 8px 8px;
    border-top: 20px solid #f4d015;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
}

/* Lomakekenttien tyylittely */
#loginPanel .input-group {
    margin-bottom: 15px;
}
#loginPanel .input-group-addon {
    background-color: #003865;
    color: #fff;
    border: 0;
}
#loginPanel .input-group .form-control:not(:first-child):not(:last-child), 
#loginPanel .input-group-addon:not(:first-child):not(:last-child), 
#loginPanel .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0 5px 5px 0;
}

/* Painike */
.btn { border-radius: 0; border: 0; }
.btn-default {
    background-color: #f4d015;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}
.btn-default:hover, .btn-default:active, .btn-default:focus, .btn-default:visited {
    background-color: #caab0b;
}

/* Mobiilihionnat */
@media (min-width: 991px)
{
    #loginPanel form {
        width: 65%;
    }
}