:root {
  --tecnored-naranja: #FF7F27;
  --tecnored-naranja-hover: #FFA047;
}

/* =========================================================
   BASE GENERAL
   ========================================================= */
html, body {
  height: 100%;
  margin: 0;
  background-color: #f8f9fa; /* fondo global */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* =========================================================
   BLOQUE LOGIN SIN FONDO NI BORDES
   ========================================================= */
.login-box {
  width: 100%;
  max-width: 380px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 1rem;
}

/* =========================================================
   LOGO Y TÍTULO
   ========================================================= */
.login-box img {
  height: 100px;
  margin-bottom: 1rem;
}

.app-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--tecnored-naranja);
  margin-bottom: 0.75rem;
}

.app-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* =========================================================
   FORMULARIO
   ========================================================= */
.form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #ccc;
  background-color: transparent;
  box-shadow: none;
  transition: border-color .2s ease;
}

.form-control:focus {
  border-color: var(--tecnored-naranja);
  box-shadow: none;
}

.invalid-feedback {
  font-size: 0.8rem;
}

/* =========================================================
   BOTÓN
   ========================================================= */
.btn-tecnored {
  background-color: var(--tecnored-naranja);
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 0.6rem;
  transition: background-color .2s ease;
}

.btn-tecnored:hover {
  background-color: var(--tecnored-naranja-hover);
}

/* =========================================================
   LOGO FINAL
   ========================================================= */
.footer-logo img {
  height: 45px;
  margin-top: 2rem;
  opacity: 0.85;
  transition: opacity .2s;
}

.footer-logo img:hover {
  opacity: 1;
}