body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(
    to bottom,
    var(--cor-primaria) 0%,
    transparent 100%
  ), #f4f5f9;
}

.login-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.login-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.logo {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.smart {
  font-weight: 500;
  color: var(--cor-primaria);
}

.painel {
  font-weight: 200;
  color: var(--cor-primaria);
}

form input[type="email"],
form input[type="password"] {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid var(--cor-primaria);
  font-size: 1rem;
  outline: none;
  padding: 0 1rem;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.botao {
  flex: 1;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--cor-primaria);
}

.botao.primario {
  background-color: var(--cor-primaria);
  color: white;
  border: none;
}

.botao.secundario {
  background-color: transparent;
  color: var(--cor-primaria);
}

.link-baixo {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #333;
}

.link-baixo:hover {
  color: var(--cor-primaria);
}

.link-baixo a {
  text-decoration: none;
  color: inherit;
}

.mensagem-erro {
  background-color: #ffe0e0;
  color: #b10000;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.mensagem-sucesso {
  background-color: #e0ffe5;
  color: #006b1f;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #b6f2c2;
}
