body {
  
  background-color: #1B1B1E;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

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

.container {
}
.login-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 400px;
  gap: 30px;
}

h1 {
  color: white;
}
.login-container input {
  background-color: #2F2F2F;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  color: white;
  outline: none;
  padding-left: 10px;
  margin-bottom: 10px;
}
.login-container input::placeholder{
  color: rgba(255, 255, 255, 0.603);
}

form{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
button{
  background-color: #5312C2;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: none;
  padding: 10px;
  font-size: 15px;
  color: white;
  outline: none;
  font-weight: bold;
  cursor: pointer;
}

.inputs {
  display: flex;
  width: 100%;
  flex-direction: column;
}
