body {
  font-family: 'Montserrat', sans-serif;
  /* font-family: 'Poppins', sans-serif; */
}
.bg-login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgb(50,140,236);
}
.login, .register, .password-recovery {
  margin: 10% auto;
  width: 300px;
  display: none;
}
.login-screen, .register-proccess, .proccess-box {
  background-color: #FFF;
  box-shadow: 18px 23px 26px 0 rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 5px
}
.register{
  /*min-height: 80%;*/
  max-height: 80vh;
  display: none;
  position: relative;
}
.proccess-numbers{
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 100%;
  top: -18px;
}
.proccess-numbers span{
  display: inline-block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid #fff;
  background-color: rgb(50,140,236);
  color: #fff;
  transition: 0.2s ease;
  font-weight: bold;
  line-height: 1.75;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.proccess-numbers span.active{
  background-color: #fff;
  color: rgb(50,140,236);
}
.login.active, .register.active, .password-recovery.active{
  display: block;
}
.app-title {
  text-align: center;
  margin: 1rem;
}
.login-form {
  text-align: center;
}
.control-group {
  margin-bottom: 10px;
}
.login-field {
  text-align: center;
  background-color: #ECF0F1;
  box-shadow: 0 0 0 0 transparent !important;
  outline: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 10px 16px;
  width: 250px;
  transition: border .5s;
}
.register-proccess{
  display: none;
}
.register-proccess.active{
  display: block;
}
.register-proccess .login-field{
  padding: 4px 12px;
  text-align: left;
}
.register-log{
  display: inline-block;
  width: 100%;
  margin-top: 16px;
  text-align: center;
  background-color: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 4px 16px;
}
.login-ui-btn{
  background: rgb(50,140,236);
  color: #ffffff;
  border: none;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 12px auto 0;
}
.login-btn {
  background: linear-gradient(to right, rgb(34,36,120), rgb(50,140,236));
}
.register-btn{
  background: rgb(50,140,236);
}
.back-btn{
  background-color: #dc3545;
}
.login-link {
  font-size: 12px;
  color: #444;
  display: block;
	margin-top: 12px;
}
