#login form {
  border: 4px solid transparent;
  border-radius: 16px;
  padding: 24px;
  background-color: transparent;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);

  border-image: linear-gradient(to right, #34d399, #14b8a6, #15803d) 1;
}

#login form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: transparent;
  z-index: -1;
}

#login img[src*="logo.svg"] {
  width: 200px !important;
  height: auto !important;
  max-width: none !important;
}

header img[src*="logo.svg"] {
  width: 200px !important;
  height: auto !important;
  max-width: none !important;
}

#login h1 {
  margin-top: 20px !important;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(to right, #34d399, #14b8a6, #15803d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#login input[type="text"],
#login input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, #34d399, #14b8a6, #15803d);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  position: relative;
  color: black;
}

#login input[type="text"]::placeholder,
#login input[type="password"]::placeholder {
  color: #999;
}

#login input[type="submit"] {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(to right, #34d399, #14b8a6, #15803d);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#login input[type="submit"]:hover {
  background: linear-gradient(to right, #2dd4bf, #0d9488, #166534);
}

#login .wrong {
  margin-bottom: 0.67em;
  color: #b91c1c;
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

html, body {
  height: 100%;
}


#app {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}



.breadcrumbs {
  position: relative;
  margin-bottom: 70px;
  z-index: 1;
}

#app {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#app::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background-image: url('./img/logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}




