/* Estilos para a página de login */
.login-body {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.login-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 5px;
}

.login-subtitle {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.login-form .form-control {
  padding: 12px 15px;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Ajuste para o alerta de login */
.status-alert {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
}