@import "//fonts.googleapis.com/css?family=Lato:300,400,700,900";
@import "../fonts/font-awesome/pro/all.css";
@import "../js/bootstrap5/css/bootstrap.min.css";

html, body {
	padding: 0px;
	margin: 0px;
	font-family: 'Lato';
	height: 100%;
	font-size: 16px;
	font-weight: 600;
}
		
.login {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto auto;
	grid-gap: 10px;
}

.block {
	grid-area: 1 / 2;
	width: 650px;
	margin: auto;
}

.background {
	background: url('/assets/images/loginbg.png') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: fadein 1.5s ; /* Chrome, Safari, Opera */
	animation: fadein 1.5s ;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
}
.background::before {
	background-color: rgba(15, 15, 15, 0.6);
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
}
.gradient {
	background: #1f3649;
	background: -moz-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #1f3649), color-stop(44%, #17253d), color-stop(100%, #040d11));
	background: -webkit-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -o-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -ms-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: radial-gradient(ellipse at center, #1f3649 0%, #17253d 44%, #040d11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@account-color-dark', endColorstr='#040d11', GradientType=1);
}


/* Chrome, Safari, Opera */
@-webkit-keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
/* Standard syntax */
@keyframes fadein {
	from {opacity: 0.2;}
	to {opacity: 1;}
}

.user-img {
  color: #ffffff;
  display: block;
  font-size: 75px;
  position: relative;
  text-align: center;
  top: 0;
}
.account-info {
    background: #A3070C;
    color: #ffffff;
    display: block;
    display: table-cell;
    padding: 30px;
    text-align: left;
    vertical-align: top;
    width: 300px;
  }
.account-info h3 {
  font-size: 20px;
  margin-top: 5px;
}
.account-info ul {
  margin: 10px 0 0;
  padding: 0;
}
.account-info ul li {
  font-size: 15px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.account-info ul li i {
  padding-right: 8px;
}
.account-form {
  background: #ffffff;
  display: block;
  padding: 30px;
  padding-left: 40px;
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
  display: table-cell;
  vertical-align: top;
  width: 650px;
}
.account-form a {
  color: #A7A7A7;
}
.account-form a:hover {
  color: #838383;
}
.account-form .forgot-password {
  padding-top: 4px;
}
.form-signin input[type="text"],
.form-signin input[type="email"],
.form-signup input[type="text"],
.form-signup input[type="email"] {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-bottom: 8px;
}
.btn.btn-lg {
  font-size: 15px;
  padding: 8px 48px 6px;
}
.account-copyright {
  bottom: 10px;
  color: #BDBDBD;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
@media screen and (max-height: 700px) {
   .account-copyright {
      position: relative;
	  margin-top: 40px;
   }
}

.form-footer {
  background: #F4F4F4;
  border-top: 1px solid #dddddd;
  margin: 30px -30px -30px -30px;
  padding: 20px 30px;
}
.backstretch:before {
  background-color: rgba(15, 15, 15, 0.6);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.fa-blank {
	visibility:hidden !important;
}
.append-icon {
  position: relative;
}
.append-icon input {
  padding-right: 36px;
}
.append-icon i {
  color: #1b1e25;
  color: rgba(27, 30, 37, 0.3);
  font-size: 14px;
  height: 34px;
  left: auto;
  line-height: 34px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 36px;
}

.m-b-20 {
  margin-bottom: 20px !important;
}
.btn-primary {
    background-color: #A3070C;
	border-color: #FF0000;
}

.btn-loading .btn-text {
	padding-left: 20px;
}

.btn-loading-spin {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.btn-loading-spin:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 3px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: btn-loading-spin 1.2s linear infinite;
}
@keyframes btn-loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}