*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f5;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper {
  display: flex;
  width: 80%;
  max-width: 1200px; 
  height: 70%;
}

.login-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-left .logo {
  max-width: 80%; 
}

.login-right {
  flex: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 100%;
  max-width: 350px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

input, button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}


button {
  background-color: #0050b3;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.8rem; 
}


button:hover {
  background-color: #003d99;
}

.erro {
  color: red;
  margin-top: 1rem;
}
