/*!
 *
 * This file is part of the ESKTools package.
 *
 *  (c) Sebastian Kueck <sebastian@ffekt.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
body {
  background-position-x: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.bg-drop {
  position: fixed;
  background-color: #1c2f3f;
  opacity: 0.7;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.lockscreen-wrapper {
  width: 320px;
  margin: -146px 0 0 -160px;
  top: 50%;
  left: 50%;
  position: absolute;
  background: #fff;
  color: #555;
  border-radius: 3px;
}
.lockscreen-wrapper .lockscreen-title, .lockscreen-wrapper .lockscreen-content {
  padding: 25px;
}
.lockscreen-wrapper .lockscreen-title {
  padding-bottom: 0;
}
.lockscreen-wrapper .lockscreen-title h1 {
  margin: 0;
  font-size: 20px;
  text-align: center;
}
.lockscreen-wrapper .lockscreen-content .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eee;
  color: #888;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 3px;
  outline: none;
  box-shadow: none;
  font-size: 12px;
}
.lockscreen-wrapper .lockscreen-content .form-control:focus {
  border-bottom: 2px solid #e86d34;
  color: #333;
}
.lockscreen-wrapper .lockscreen-content .checkbox-label {
  font-weight: normal;
  font-size: 11px;
}
.lockscreen-wrapper .lockscreen-content .controls {
  text-align: center;
}
.lockscreen-wrapper .lockscreen-content .controls button {
  background-color: #e86d34;
  border: none;
  border-radius: 30px;
  font-size: 12px;
}
.lockscreen-wrapper .lockscreen-content .controls button:hover {
  background-color: #eb7d4b;
}
.lockscreen-wrapper .lockscreen-content .controls .forgot-password {
  font-size: 11px;
  color: #888;
  margin-top: 15px;
  display: block;
}

.message-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.message-wrapper .alert-danger {
  color: #fff;
  background-color: #ff3333;
  border-color: transparent;
  border-radius: 0;
}