.login-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f5f7fa;
}

.login-left, .login-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.login-left {
  background: #fff;
}

.login-right {
  background: linear-gradient(135deg, #1e2a38, #2e3e4e);
  color: #fff;
  align-items: center;
  text-align: center;
}

.login-logo {
  width: 160px;
  margin-bottom: 20px;
}

.login-box {
  max-width: 400px;
  margin: auto;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form fieldset {
  border: none;
  padding: 0;
}

.login-form legend {
  font-weight: 600;
  margin-bottom: 10px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.login-form input:focus {
  border-color: #1e2a38;
  outline: none;
}

.senha-wrapper {
  display: flex;
  align-items: center;
}

.toggle-senha {
  margin-left: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.btn-login {
  background: #1e2a38;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: #2e3e4e;
}

.btn-local {
  margin-top: 10px;
  background: #2e8b57;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
}

.btn-local:hover {
  background: #246b45;
}

.login-error {
  background: #ffe5e5;
  color: #dc2626;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.login-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
}

.login-banner img {
  max-width: 300px;
  margin-top: 20px;
}