* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/core/img/fundo-login.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(241, 90, 34, 0.4);
  z-index: 1;
}

.login-container {
  position: relative;
  z-index: 2;
  background: #ffffffee;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 320px;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: -30px;
}

h2 {
  color: #f15a22;
  margin-bottom: 20px;
}

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

input {
  padding: 10px;
  border: 1px solid #f15a22;
  border-radius: 5px;
  font-size: 14px;
  text-align: left;
}

button {
  padding: 10px;
  background-color: #f15a22;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #f15a22;
}

.erro {
  margin-top: 10px;
  color: #f15a22;
  font-size: 0.9em;
}
