.login-bg {
  width: 100%;
  height: 100%;
  background-image: url("../img/home0.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.bg {
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 25.6em;
  padding: 2em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 3);
}

.login-box .close-btn {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  font-size: 1.3em;
  cursor: pointer;
  padding: 1em;
  color: var(--ft_color);
}

#login-Div {
  display: none;
}

.login-box .close-btn:hover {
  color: var(--main_color);
}

.login-box h2 {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
}

.login-box form {
  margin-top: -1.25em;
}

.login-box form .login-input {
  height: 2.8em;
  width: 100%;
  margin: 2.5em 0;
}

form .login-input label {
  font-size: 1.2em;
}

form .login-input input {
  height: 100%;
  width: 100%;
  padding-left: 0.625em;
  font-size: 1.1em;
  border: 1px solid silver;
}

form .login-input input:focus {
  border-color: var(--main_color);
  border-bottom-width: 2px;
}

form .forgot-pass {
  margin-top: -0.5em;
}

form .forgot-pass a {
  color: var(--link_color);
  text-decoration: none;
}

form .forgot-pass a:hover,
form .forgot-pass a:focus {
  text-decoration: underline;
}

form .login-btn {
  margin: 0.9em 0;
  height: 2.8em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

form .login-btn .inner {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  z-index: -1;
  background: var(--main_color_darker);
  transition: all 0.4s;
}

form .login-btn input:hover,
form .login-btn input:focus {
  color: var(--link_color);
}

form .login-btn input {
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

form .signup-link {
  text-align: center;
}

form .signup-link a {
  color: var(--link_color);
  text-decoration: none;
}

form .signup-link a:hover,
form .signup-link a:focus {
  text-decoration: underline;
}
