/* === LOGIN PAGE === */
body.login-page {
  background-color: #DBEAFE;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito Sans', sans-serif;
}

.login-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 100vh;
}

.login-card {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
}

/* === LOGO BANNER (OPÇÃO B) === */
.login-logo-banner {
  background: #0F2744;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-logo-banner img {
  height: 80px;
  object-fit: contain;
}

/* === CARD INNER CONTENT === */
.login-card-body {
  padding: 2rem;
}

/* === BADGE === */
.login-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.login-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* === TITLE === */
.login-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.25rem;
}

/* === SUBTITLE === */
.login-subtitle {
  font-size: 15px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 0;
}

/* === DIVIDER === */
.login-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 1.25rem 0;
}

/* === FORM LABELS === */
.login-card-body .form-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #374151 !important;
}

/* === FORM INPUTS === */
.login-card-body .form-control {
  border: 1.5px solid #D1D5DB !important;
  border-radius: 8px !important;
  height: 42px !important;
  padding: 0 2.5rem 0 2.5rem !important;
}

.login-card-body .form-control:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* === FORGOT PASSWORD === */
.login-forgot {
  text-align: right;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.login-forgot a {
  color: #2563EB;
  font-size: 13px;
  text-decoration: none;
}

.login-forgot a:hover {
  text-decoration: underline;
}

/* === SUBMIT BUTTON === */
.login-card-body .btn-primary {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
  color: #ffffff !important;
  width: 100%;
  height: 44px;
  border-radius: 8px !important;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.15s;
}

.login-card-body .btn-primary:hover,
.login-card-body .btn-primary:focus {
  background-color: #1D4ED8 !important;
  border-color: #1D4ED8 !important;
}

/* === FOOTER === */
.login-footer {
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.login-footer a {
  color: #2563EB;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}
