html{
  margin:0;
  padding:0; 
}
body{
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  margin:0;
  padding:0;  
}
div#login-p {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  width:100%;
  height:100%;
  opacity: 1.0;
}
.bg_style {
  display: none;
}
#form-signin {
  position: absolute;
  z-index: 2;
  top:0;
  left:0;
  right:0;
  margin:auto;
  width:100%;
  max-width: 360px;
  padding: 0;
}

.login-logo {
  display: block;
  text-indent: -9999px;
  height: 82px;
  background: url(/template/image/logo/logo.svg) no-repeat center center;
  background-size: contain;
  margin: 16px 0 0 0;
}

.revision_signature{
  color: #bdbdbd;
  position: absolute;
  bottom: 0;
  right:0;
  left: 0;
  padding:8px 16px;
  font-size:12px;
  text-align: right;
}


.form-signin input.form-control {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #f1f1f1;
  border-radius: 0;
  padding: 8px 0px;
  transition: all 0.5s;
  font-size: 16px;
  width: 100%;
  box-shadow: none;
}

.form-signin .form-control:focus {
  border-bottom: 1px solid #5cb3fd;
  box-shadow: none;
}
.form-signin .form-group{
  padding:16px 32px;
}

#login_form_error{
  padding:0 24px;
  color:#f00;
}

#form-btns .dh-primary{
  float:right;
}

#demo_enter{
  text-align: center;
  display: block;
  padding: 16px;
  color:#212121;
  text-decoration: none;
}


/* Секция modal */
.modal{ display: none; }

:active,:hover,:focus {
  outline:none;
  outline-offset:0;
}

.btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 48px;
  border:none;
  line-height: 36px;
  padding:0 16px;
  white-space: nowrap;
  cursor: pointer;
}


.dh-secondary {
  background-color: #EEEEEE;
}

.dh-primary {
  background-color: #009600;
  color:#fff !important;
}

.ripple{
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s linear, 
              background-image 0.3s linear;
}
.ripple:before,
.ripple:after{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: scale(10);
  opacity: 0;
}
.ripple:before {
  background-color: rgba(0, 0, 0, 0.1);
  transition: opacity;
  border:none;
}
.ripple:hover:before  {
  opacity: 1;
  transition: 0.3s;
}
.ripple:after{
  background-image: radial-gradient(circle, #000 10%, rgba(0, 0, 0, 0) 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transition: transform .5s, opacity 1s;
}
.ripple:active:after{
  transform: scale(0);
  opacity: .2;
  transition: 0s;
}
