@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.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"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Blur background */
.isamgeobackground::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;

  display: block;
  background-size: cover;
  background-image: url('/static/img/background1.webp');
  width: 100%;
  height: 100%;

  /* -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px); */
}

.form-box {
	background-color: rgba(255, 255, 255, 0.70);
	margin: auto auto;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0 0 10px #000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 1000px;
	height: 700px;
}

/* letter spacing login */
.title {
  letter-spacing: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  /* color: rgb(92, 171, 227); */
}

.css-typing p {
  overflow: hidden;
  font-family: 'Source Sans Pro', sans-serif;
}
.css-typing p:nth-child(1) {
  width: 7em;
  animation: type1 1s steps(40, end);
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(2) {
  width: 7em;
  opacity: 0;
  animation: type2 1s steps(40, end);
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(3) {
  width: 7em;
  opacity: 0;
  animation: type2 1s steps(40, end);
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(4) {
  width: 7em;
  opacity: 0;
  animation: type2 1s steps(40, end);
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes type1 {
  0% {
    width: 0;
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    border: none;
  }
}



