﻿/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body, html {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
    background-image: url(../Images/bg.png);
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;              /* optional, center the image */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00517d', endColorstr='#008bd6', GradientType=0 );*/
    background-attachment: fixed;
}

img#bluapprove {
    position: fixed;
    z-index: 999;
    bottom: 10px;
    right: 10px;
}

#menu {
    background-color: white;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 1;
}

#menu-items {
    display: inline;
    float: right;
    height: 100%;
    font-size: 1.2em;
    font-weight: 300;
}

a {
    text-decoration: none;
}

ul {
    float: right;
    list-style-type: none;
    margin: 19px 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: right;
}

    li a {
        display: block;
        color: #283b8d;
        background-color: white;
        text-align: center;
        padding: 14px 16px;
        margin: 0 6px;
        text-decoration: none;
        -moz-border-radius: 32px;
        -webkit-border-radius: 32px;
        border-radius: 32px;
    }

        li a:hover {
            background-color: #283b8d;
            color: white;
            text-decoration: none;
            -o-transition: .5s;
            -ms-transition: .5s;
            -moz-transition: .5s;
            -webkit-transition: .5s;
            transition: .5s;
        }

.btn-blue {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
    background-color: #283b8d;
    box-shadow: 0px 3px 0px 0px #1d1d1d;
    border: 0;
    font-size: 1.2em;
    font-weight: 300;
}

    .btn-blue:active {        
        -webkit-transform: translate(0px, 2px);
        transform: translate(0px, 2px);
        box-shadow: 0px 1px 0px 0px #3C93D5;
    }

    .btn-blue:hover {
        color: #b2b2b2;
    }

.container {
    filter: 0;
    z-index: 0;
    padding-top: 90px;
}

.card-container.card {
    max-width: 382px;
    padding: 32px 40px;
}

.greyed {
    color: #666;
}

/*
 * Card component
 */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(80, 198, 247);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(80, 198, 247);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(80, 198, 247);
}

.form-control {
    height: 50px;
    font-size: 1.1em;
}

.forgot-password {
    color: #2C99D4;
    text-decoration: underline;
}

    .forgot-password:hover,
    .forgot-password:active,
    .forgot-password:focus {
        color: #2C99D4;
        text-decoration: none;
    }
