﻿@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700');

html {
    background: url('login-background.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    background-color: transparent;
    font-family: "Open Sans", 'Arial', sans-serif;
    margin-top: 10%;
    color: #fff;
}

h1 small, a{ color: #ffffff;}

.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.login-container {
    margin: 0 auto;
    width: 375px;
    text-align: center;
}

.box-heading {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #333d4d;
    background-color: transparent;
    margin: 0;
    text-align: center;
    border-left: 15px solid rgba(0, 0, 0, 0.3);
    border-right: 15px solid rgba(0, 0, 0, 0.3);
    border-top: 15px solid rgba(0, 0, 0, 0.3);
    -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
	-moz-transition: background .2s ease-in-out, border .2s ease-in-out;
	-ms-transition: background .2s ease-in-out, border .2s ease-in-out;
	-o-transition: background .2s ease-in-out, border .2s ease-in-out;
	transition: background .2s ease-in-out, border .2s ease-in-out;
}

    .box-heading .box-logo {
        background-color: #ffffff;
        width: 100%;
        height: 100px;
        border-top: 5px solid #407bb8;
        border-bottom: 1px solid #cbcbcb;
        padding-top: 20px;
        padding-left: 30px;
    }

        .box-heading .box-logo img {
            width: 100%;
        }

.box {
    text-align: left;
    background-color: transparent;
    margin-bottom: 30px;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 50px 0;
    border-left: 15px solid rgba(0, 0, 0, 0.3);
    border-right: 15px solid rgba(0, 0, 0, 0.3);
    border-bottom: 15px solid rgba(0, 0, 0, 0.3);
    -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
	-moz-transition: background .2s ease-in-out, border .2s ease-in-out;
	-ms-transition: background .2s ease-in-out, border .2s ease-in-out;
	-o-transition: background .2s ease-in-out, border .2s ease-in-out;
	transition: background .2s ease-in-out, border .2s ease-in-out;
}

    .box .box-content {
        padding: 0;
        color: #1d1d1d;
    }

    .box h4 {
        margin-bottom: 5px;
        color: #1d1d1d;
    }

.form-group {
    margin: 0;
    padding: 20px 15px 0 15px;
    background-color: #eeeff3;
}

    .form-group input.form-control {
        padding: 15px;
        height: 100%;
    }

    .form-group input[type='checkbox'] {
        width: 30px; /*Desired width*/
        height: 30px; /*Desired height*/
        cursor: pointer;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 0;
        margin: 0;
        vertical-align: bottom;
        position: relative;
        top: 4px;
        margin-right: 10px;
        *overflow: hidden;
    }

    .form-group.login-remember {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .form-group.submit {
        background-color: #333d4d;
        margin: 0;
        padding: 20px;
        border-radius: 0 0 30px 0;
    }

    .form-group label {
        font-family: 'Lato', sans-serif;
    }

    .form-group.submit button {
        text-transform: uppercase;
        background: #1caf99;
        color: #F2F2F2;
        -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
        -moz-transition: background .2s ease-in-out, border .2s ease-in-out;
        -ms-transition: background .2s ease-in-out, border .2s ease-in-out;
        -o-transition: background .2s ease-in-out, border .2s ease-in-out;
        transition: background .2s ease-in-out, border .2s ease-in-out;
        border: 5px solid rgba(0, 0, 0, 0.3);
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

        .form-group.submit button:hover {
            border-color: #fff;
        }

@media (max-width: 400px) {
    body {
        margin-top: 10px;
    }

    .login-container {
        margin: 0;
        width: 100%;
    }
}

@media (max-height: 700px) {
    body {
        margin-top: 10px;
    }
}

div.forgotPasswordLink{
    height: 25px;
}

div.forgotPasswordLink label{
    margin-top: 10px;
    float: right;
    cursor: pointer;
}

div.validation-summary-errors {
    margin-top: 15px;
}

label.email {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

div.resetConfirmation {
    padding-bottom: 15px;
}