/*
Copyright (C) flashcomp.cz - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential
Written by Martin Maly <malymartin90@gmail.com>, 14-03-2017
*/
/* 
    Created on : 14.3.2017, 19:53:29
    Author     : malik
*/
html{

}
.login-container{
    background: rgba(255,255,255,.8);
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-self: center;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Roboto, sans-serif;

    /* Tvoje osvědčená šedá */
    background-color: #2d323a;

    /* Kombinované pozadí */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Crect width='100%25' height='100%25' fill='%232d323a'/%3E%3Cdefs%3E%3Cpattern id='p' width='16' height='16' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 16V0H16' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    background-size: 160px 160px;

    /*color: #e0e0e0;*/

    /* CENTROVÁNÍ OBSAHU */
    display: flex;
    justify-content: center; /* Horizontální centr */
    /*align-items: center;      Vertikální centr */
}
.form-signin {
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
    margin-bottom: 10px;
}
.form-signin .checkbox {
    font-weight: normal;
}
.form-signin .form-control {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}