*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  color: #222;
  overflow-y: hiden;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(120deg, #1e1e2f, #31213f);
}

.login-container{
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 30px  rgba(0, 0, 0, 1);  
}

form{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

form h2{
  text-align: center;
  color: #e48e00;
}

label{
  color: #444;
  font-weight: bold;
  margin-bottom: -25px;
  margin-left: 0.6rem;
}

input{
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size:  1rem;
}

input:focus{
  outline: none;
  border-color: #e48e00;
  box-shadow: 0 0 5px #e48e00;
}


button {
  padding: 0.8rem;
  border: none;
  background-color: #e48e00;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

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

.msg-erro {
  color: red;
  font-size: 0.9rem;
  text-align: center;
}