/*
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>, 10-09-2017
*/
/* 
    Created on : 10.9.2017, 15:34:43
    Author     : malik
*/

body{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}


.login-container{
    
    height: 100%;
    display: grid;
    text-align: center;
}
.login-form{
    background-color: #fff;
    max-width: 500px;
    box-shadow: 0 0 30px black;
    text-align: center;
}
.logo-holder{

    width: 100%
}
.logo_img{
    width: 150px;
    margin: 10px;
}
.welcome{
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px;
}
.form-signin-heading{
    font-size: 15px;
    font-weight: bold;
}
.form-holder{
    width: 300px;
    display: inline-block;
}
.not-account{
    margin: 20px;
    font-weight: bold;

}
.help{
    margin: 20px;
    font-size: 10px;
}
.login-button{

}
.page-bg {
    

   -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.blur-bgimage {
     overflow: hidden;
    content: "";
    position: absolute;
    width : 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    
    filter        : blur(10px);
    -moz-filter   : blur(10px);
    -webkit-filter: blur(10px);
    -o-filter     : blur(10px);
    
    transition        : all 2s linear;
    -moz-transition   : all 2s linear;
    -webkit-transition: all 2s linear;
    -o-transition     : all 2s linear;
}