/* ===== LOGIN PAGE ONLY ===== */

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef2ff;
  font-family: system-ui, sans-serif;
}

.login-card {
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 38px 34px 44px;
  border-radius: 16px;
  box-shadow: 0px 12px 32px rgba(0,0,0,0.12);
  animation: fadeIn .35s ease-out;
}

.login-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.login-subtitle {
  text-align: center;
  color: #475569;
  margin-bottom: 26px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

input {
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 15px;
}

input:focus {
  border-color: #2563eb;
  background: white;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.25);
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.login-btn:hover {
  background: #1d4ed8;
}

.error-msg {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  padding: 12px;
  border-radius: 6px;
  color: #b91c1c;
  margin-bottom: 16px;
  font-size: 14px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.login-logo {
    width: 200px;   /* o 160px, 180px */
    height: auto;
}


.login-title-text {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 6px;
}
