/* ============================================================
   App Concept Vision — Auth CSS
   Arquivo: public/assets/css/auth.css

   Objetivo:
   Estilos das telas isoladas de autenticação.
   Usado em:
   - app/views/auth/login.php
   - app/views/auth/force_change_password.php
   ============================================================ */

body.auth-body {
  font-family: Arial, sans-serif;
  background: #eef2f7;
  margin: 0;
}

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-box {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.auth-box-login {
  max-width: 460px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.auth-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  color: #111827;
}

.auth-text {
  margin-top: 0;
  margin-bottom: 24px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
}

.auth-label {
  display: block;
  margin: 15px 0 6px;
  font-weight: 600;
  color: #111827;
}

.auth-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.auth-button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
}

.auth-button:hover {
  background: #1d4ed8;
}

.auth-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.auth-version {
  position: fixed;
  right: 18px;
  bottom: 14px;
  color: #64748b;
  font-size: 12px;
  line-height: 1;
  opacity: 0.85;
}
