* {
  font-family: "Roboto";
}

body {
  background-color: white;
}

.login-section {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 2rem;
}

.input-field {
  margin-top: 15px;
  display: flex;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 30px;
  font-size: 1.5rem;
}

.submit-button {
  margin-top: 15px;
  display: flex;
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 30px;
}

.submit-input:hover {
  cursor: pointer;
}

input {
  padding-left: 5px;
  width: 100%;
  border: none;
  border-style: none;
  outline: none;
  background-color: #e0e0e0;
}

.submit-input {
  font-size: 1rem;
  color: white;
}

.green {
  background-color: #57d15b;
}

.red {
  background-color: rgb(235, 66, 66);
}

.red-font {
  color: rgb(235, 66, 66);
}

h3 {
  font-size: 1rem;
  color: red;
}
