body {
  margin: 0;
  height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #15191c, #0d1114);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.login-card {
  position: relative;
  z-index: 2;
  width: 400px;
  background: linear-gradient(180deg, #15191c, #0d1114);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transform: translateX(-250px);

}

.login-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container img {
  max-width: 70%;
  height: auto;
}

/* Input group */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #d1a857;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border-radius: 8px;
  border: none;
  background-color: #1f232b;
  color: #fff;
  font-size: 14px;
}

input:focus {
  outline: 2px solid #d1a857;
}

.btn-login {
  width: 100%;
  background: linear-gradient(90deg, #d1a857, #a98028);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: linear-gradient(90deg, #e6bf64, #be962a);
}

.forgot a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
}

.login-left a {
  color: #d1a857;
  text-decoration: underline;
}

/* Imagen decorativa grande fuera del login-card */
.background-laptop {
  position: absolute;
  right: -600px;
  bottom: -80px;
  width: 600px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
