/* ===============================
   LOGIN – DB INFRA PORTAL
================================ */

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0b1e3c, #102b5c);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WRAPPER */
.login-wrapper {
  text-align: center;
}

/* CARD */
.login-card {
  width: 440px;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 42px;
  box-shadow: 0 35px 70px rgba(0,0,0,.30);
}

.login-card-logo2 img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
}



/* PORTAL TITLE */
.login-portal-title {
  font-size: 17px;
  font-weight: 700;
  color: #0b1e3c;
  line-height: 1.4;
  margin-bottom: 22px;
}

/* LOGIN HEADLINE */
.login-headline {
  font-size: 20px;
  font-weight: 600;
  color: #0b1e3c;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

/* ERROR */
.login-error {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* INPUTS */
.field {
  position: relative;
  margin-bottom: 18px;
}

.field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
}

.field input {
  width: 100%;
  padding: 13px 14px 13px 44px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.field input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}

/* OPTIONS */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 6px 0 22px;
}

.options a {
  color: #2563eb;
  text-decoration: none;
}

/* BUTTON */
.btn-login {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-login:hover {
  filter: brightness(1.1);
}

/* IP */
.login-ip {
  margin-top: 22px;
  font-size: 12px;
  color: #64748b;
  display: flex;
  justify-content: center;
  gap: 6px;
}

/* FOOTER LINKS */
.login-links {
  margin-top: 18px;
  font-size: 12px;
  display: block;
  flex-direction: column;
  gap: 6px;
}

.login-links a {
  color: #2563eb;
  text-decoration: none;
}
.login-links-top {
  display: flex;
  gap: 14px;              /* Abstand zwischen den oberen Links */
  justify-content: center; /* optional */
  flex-wrap: wrap;        /* falls es auf Mobile zu eng wird */
}

/* GLOBAL FOOTER */
footer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
