.login_app {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/bag-img.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.login_app::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(35, 21, 100, 0.431372549), rgba(14, 61, 118, 0.3215686275));
}

.login-container {
  padding: 1.5rem;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  margin: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5607843137);
  border: 4px solid rgba(33, 84, 141, 0.7490196078);
  box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  position: relative;
  z-index: 9;
}
.login-container .login-header {
  text-align: center;
  margin-bottom: 1.3rem;
}
.login-container .login-header .logo_img {
  width: 144px;
  display: block;
  margin: 0 auto 10px;
}
.login-container .login-header .logo_img .logo_icon {
  width: 100%;
}
.login-container .login-header p {
  color: #e4e4e4;
}
.login-container .input-group {
  margin-bottom: 0.8rem;
  position: relative;
}
.login-container .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e4e4e4;
  font-weight: 500;
  font-size: 13px;
}
.login-container .input-group input {
  width: 100%;
  padding: 10px;
  height: 45px;
  border-radius: 10px;
  border: 1px solid rgba(88, 88, 88, 0.8352941176);
  background-color: #fff;
  overflow: hidden;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.login-container .input-group input:focus {
  outline: none;
  border-color: #1d89ff;
}
.login-container .input-group .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin: 0;
  position: absolute;
  bottom: -24px;
  display: none;
}
.login-container .login-button {
  width: 100%;
  padding: 10px;
  margin: 8px 0 0;
  height: 45px;
  background: #1d89ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-container .login-button:hover {
  background: #1670d2;
}
.login-container .form-footer {
  margin-top: 0.8rem;
  text-align: center;
}
.login-container .form-footer p {
  font-weight: 300;
  font-size: 10px;
  text-transform: capitalize;
  line-height: 20px;
  color: #e4e4e4;
}/*# sourceMappingURL=login.css.map */