* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  overflow: hidden;
}

body {
  background-color: rgb(29, 29, 29);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
  height: 300px;
  width: 400px;
  border: 5px solid white;
  background: rgb(29, 29, 29);
  border-radius: 50px;
  text-align: center;
}

.info {
  margin-top: 40px;
  font-size: 20px;
}

.signin {
  color: white;
  margin-top: 40px;
  font-size: 50px;
}

.email {
  background-color: white;
  padding: 10px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 20px;
}

.password {
  background-color: white;
  padding: 10px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 20px;
  margin-top: 20px;
}

.button {
  background-color: rgb(29, 29, 29);
  color: white;
  font-size: 25px;
  margin-top: -5px;
  width: 300px;
  border-radius: 0px 0px 20px 20px;
  padding: 10px;
  border: 5px solid white;
  text-align: center;
  margin-left: 50px;
}

.loginbutton {
  background-color: rgb(29, 29, 29);
  border: none;
  color: rgb(255, 255, 255);
  font-size: 25px;
  text-align: center;
}

.field {
  text-align: center;
  outline: none;
  border: none;
  font-size: 20px;
}
