html,
body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}
/*
.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}
.form-signin .checkbox {
    font-weight: 400;
}
.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    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"], .form-signin .impersonate {
    margin-bottom: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-signin .btn-lg.btn-primary.btn-block {
    margin-top:10px;
}


*/

/***/

body {
  background-color: #fff;
  font-family: 'Asap', sans-serif;
}

.login {
  overflow: hidden;
  background-color: white;
  padding: 10px 30px 30px 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%, -50%);
  transition: transform 300ms, box-shadow 300ms;
	box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.login::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 700px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
  left: 55%;
  bottom: -130%;
  background-color: #ED1622;
  opacity: 0.8;
  animation: wawes 6s infinite linear;
}

.login::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 680px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
  left: 50%;
  bottom: -125%;
  background-color: rgba(244, 91, 105, 1);
  opacity: 0.8;
  animation: wawes 7s infinite;
}

@keyframes wawes {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.txt-login {
  font-family: 'Asap', sans-serif;
  display: block;
  border-radius: 5px;
  font-size: 16px;
  background: white;
  width: 100%;
  border: 0;
  padding: 10px 10px;
  margin: 15px 0;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2) !important;
}

.btnLogin {
  font-family: 'Asap', sans-serif;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  width: 100px;
  border: 0;
  padding: 10px 0;
  margin-top: 10px;
  margin-left: 0;
  border-radius: 5px;
  background-color: rgba(244, 91, 105, 1) !important;
  transition: all 300ms;
}

  .btnLogin:hover {
    background-color: rgba(242, 64, 82, 1) !important;
  }

.btnLogin:focus {
/*	border-color: #dc3545 !important;*/
	box-shadow: 0px 0px 0px 0.2rem rgba(225, 83, 97, 0.5) !important;
}

.img-logo {
	height: 55px;
	width: 55px;
	float: left;
	/*margin-top: 5px;*/
	margin-bottom: 8px;
}

.txt-title {
  float: left;
	margin-left: 10px;
	margin-top: 25px;
	font-weight: 600;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px; /* Set the fixed height of the footer here */
	line-height: 60px; /* Vertically center the text there */
	background-color: #f5f5f5;
}