﻿body {
  background: #ebeeef;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.container-body {
  width: 100%;
  margin: 0 auto;
}
.wrap-login100 {
  width: 670px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.limiter {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #ebeeef;
}
.limiter .title {
  background: url('admin/bg-login.jpg') no-repeat;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 15px 74px 15px;
}
.limiter .title:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(54, 84, 99, 0.7);
}
.limiter .title h2 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
.limiter form {
  width: 100%;
  display: block;
  text-align: center;
  padding: 40px 0 60px 0;
}
.limiter form input {
  height: 45px;
  font-size: 15px;
  color: #555555;
  width: 60%;
  margin-bottom: 20px;
  margin-left: 10px;
  padding: 0 5px;
  border: none;
  border-bottom: 1px solid #079AA6;
  position: relative;
}
.limiter form input:before {
  position: absolute;
  content: 'aaaa';
  width: 100%;
  left: 0;
  bottom: 20px;
  height: 1px;
  background: gray;
}
.limiter form input:after {
  position: absolute;
  content: 'vvv';
  width: 100%;
  left: 0;
  bottom: 20px;
  height: 1px;
  background: gray;
}
.limiter form input:focus {
  outline: none;
}
.limiter form span {
  display: inline-block;
  width: 100px;
}
.limiter form span.field-validation-error {
  color: #c90404;
  font-size: 0.7rem;
  width: 100%;
  display: block;
}
.validation-summary-errors {
  color: #c90404;
  font-size: 0.8rem;
}
.login100-form-btn {
  background: #079AA6;
  border: none;
  color: #fff;
  margin-left: 5px;
  padding: 10px 25px;
  border-radius: 3px;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 20px;
}
.login100-form-btn:hover {
  background-color: #004767;
  box-shadow: 0 12px 24px -10px rgba(21, 59, 93, 0.46);
  transform: scale(0.95);
}
.login100-form-btn:focus {
  outline: none;
}
.login100-form-btn a {
  color: #fff;
  text-decoration: none;
}