/* Minimal styles for /login — no dependency on merge.css */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body.login {
    margin: 0;
    padding: 60px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    background-color: #fff;
}

a:focus,
button:focus,
input:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}

.container {
    width: 940px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-left: -20px;
}

.row::before,
.row::after {
    display: table;
    line-height: 0;
    content: "";
}

.row::after {
    clear: both;
}

[class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
}

.span6 {
    width: 460px;
}

.offset3 {
    margin-left: 260px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

input[type="text"],
input[type="password"] {
    display: inline-block;
    height: 30px;
    padding: 4px 6px;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

.form-signin .input-block-level {
    display: block;
    width: 250px;
    max-width: 100%;
    min-height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox {
    display: inline-block;
    width: auto;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.checkbox input[type="checkbox"] {
    float: left;
    margin-top: 4px;
    margin-left: -20px;
}

.btn {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #bbb;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover,
.btn:focus {
    color: #333;
    text-decoration: none;
    background-color: #e6e6e6;
    background-position: 0 -15px;
}

.btn-inverse {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #363636;
    background-image: linear-gradient(to bottom, #444, #222);
    background-repeat: repeat-x;
    border-color: #222 #222 #000;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-inverse:hover,
.btn-inverse:focus {
    color: #fff;
    background-color: #222;
}

.alert {
    padding: 8px 14px;
    margin-bottom: 20px;
    color: #c09853;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
}

.alert-danger {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.alert p {
    margin: 0;
}

.form-signin {
    text-align: center;
}

.form-signin .input-block-level:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

@media (max-width: 979px) {
    .container {
        width: auto;
        padding: 0 20px;
    }

    [class*="span"],
    .offset3 {
        float: none;
        width: 100%;
        margin-left: 0;
    }

    input[type="text"],
    input[type="password"] {
        width: 100%;
        max-width: 280px;
    }
}
