/* ============================================================
   login.css — Estilos pantalla de acceso
   ============================================================ */

.login-wrapper {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── CABECERA ────────────────────────────────────────────────── */
.login-header {
  background: var(--color-dark);
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.login-logo {
  /*width: 72px; */
  height: 120px;
  /*background: var(--color-green);*/
  /*border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo img {
  width: 90px;
  height: 60px;
  /*object-fit: contain;*/
}

.login-company {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
  justify-content: center;
}

.login-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── FORMULARIO ──────────────────────────────────────────────── */
.login-form {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-input {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: var(--font);
  transition: border-color 0.15s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--color-green);
}

.form-input::placeholder {
  color: #bbb;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (min-width: 700px) {
  .login-wrapper {
    min-height: auto;
    width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
}
