.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(../img/bg01.jpg);
  animation-delay: -2s;
  background-size: cover;
}
.slide-image:nth-child(2) {
  background-image: url(../img/bg02.jpg);
  animation-delay: 6s;
  background-size: cover;
}
.slide-image:nth-child(3) {
  background-image: url(../img/bg03.jpg);
  animation-delay: 14s;
  background-size: cover;
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.login {
    position: absolute;
    left: 6rem;
}
.login-box {
    display: table;
	width: 100%;
    margin: 0 auto;
    height: calc(100vh - 0rem);
}
.login-box .inner {
    display: table-cell;
    vertical-align: middle;
	padding: 0 1rem;
}

.brand-title {
	margin-bottom: 2.5rem;
	font-size: 2.75rem;
}

.brand-title img {
    width: 50px;
    margin-right: 0.5rem;
}

.login-box-msg {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}
.login-card-body {
    width: 360px;
    background-color:rgba(0,0,0,0.74);
    border-radius: 4px;
    box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-top: -1rem;
}
.login-card-body label {
    display: block;
}
/*
.login-card-body img {
    width: 200px;
    margin: 1rem auto;
    display: block;
    margin-bottom: 3rem;
}
*/
.textbox-1-label,
.textbox-1 {
    color: #404040;
}
.textbox-1-label {
    display: block;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 0.5rem;
}
.textbox-1 {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d7d7e2;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    margin-bottom: 2rem;
    outline: none;
}
.textbox-1::placeholder {
    color: #999;
}
.password {
    position: relative;
}
#sbtn2 {
    position: absolute;
    right: 6px;
    top: 40px;
    background: none;
    color: #666;
    border: none;
    font-size: 16px;
}
.mb0 {
  margin-bottom: 0;
}
.lost-password {
    font-size: 14px;
    margin: 0.5rem 0 0;
}
.lost-password a {
    color: #03A9F4;
    font-weight: bold;
    margin-left: 2px;
}
.lost-password a:hover {
  text-decoration: none;
}
.login-footer {
  position: absolute;
  bottom: 0.5rem;
  color: #FFF;
}

  @media screen and (max-width:1440px) {  }
  @media screen and (max-width:1024px) {  }
  @media screen and (max-width: 640px) {

    .login {
    margin: 0 auto;
    display: block;
    width: 100%;
    left: auto;
    }
	
    .login-footer {
    bottom: 0;
    }
	
	.login-card-body {
	    width: 100%;
	}

  }
  @media screen and (max-width: 420px) {  }

  .term-dialog {
    width: 900px;
    height: 90%;
}

@media (max-width: 576px) {

	.term-dialog {
		width: 92%;
	}

}


