.login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1f3c4c, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  width: 100%;
  padding: 16px;
}

.login-card {
  max-width: 380px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.login-logo img {
  display: block;
  max-width: 130px;
  margin: 0 auto 12px;
}

.login-card h1 {
  text-align: center;
  margin: 8px 0 4px;
  font-size: 22px;
  color: #333;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.login-error {
  background: #ffe5e5;
  color: #a10000;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}

.login-form .input-group {
  position: relative;
  margin-bottom: 14px;
}

.login-form input {
  width: 100%;
  height: 48px;
  padding-left: 44px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.login-form input:focus {
  border-color: #2c5364;
  outline: none;
}

/* ICONLAR */
.icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: .6;
}

.icon.user {
  border: 2px solid #666;
  border-radius: 50%;
}
.icon.user::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  border: 2px solid #666;
  border-top: none;
  border-radius: 0 0 8px 8px;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.icon.lock {
  border: 2px solid #666;
  border-radius: 4px;
}
.icon.lock::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  border: 2px solid #666;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.login-form button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #2c5364;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.login-form button:hover {
  background: #244655;
}

.login-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}

.icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.55;
  pointer-events: none;
}

/* USER ICON */
.icon.user {
  border: 2px solid #666;
  border-radius: 50%;
}
.icon.user::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border: 2px solid #666;
  border-top: none;
  border-radius: 0 0 8px 8px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
/* LOCK ICON */
.icon.lock {
  border: 2px solid #666;
  border-radius: 4px;
}
.icon.lock::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 7px;
  border: 2px solid #666;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}