body {
  font-family: Arial;
  padding: 20px;
  background-color: #f5f5f5;
}

input, select {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}

button {
  padding: 10px;
  width: 100%;
}

/* deixa o fundo mais suave */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.9;
  z-index: -1;
}

/* HEADER COM LOGO */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.logo {
  position: absolute;
  left: 20px;
  width: 140px;
}

/* CONTAINER CENTRAL */
.container {
  max-width: 500px;
  margin: auto;
}

/* ===== LOGIN ===== */
#loginScreen {
  max-width: 300px;
  margin: 100px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  text-align: center;
}