h1 {
  text-align: center;
}

.bor {
  border: 5px solid black;
  border-radius: 50px;
  margin: 10% 25% 0% 25%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #F8FFF3;
  align-items: center;
  justify-content: center;
}

.push {
  text-align: start;
  padding-left: 80px;
}

#btn {
  width: 100px;
  height: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  border: 1px solid lightgray;
  margin: 0 auto;
  display: block;
}

#btn:hover {
  background-color: #2EE59D;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

input[type=text] {
  height: 25px;
  font-size: 15px;
  border: 1px solid lightgray;
  border-radius: 15px;
  outline: none;
  padding-left: 10px;
  background-color: white;
}

body {
  background-color: lightgrey;
}

.idtext {
  width: 205px;
}

.pwtext {
  width: 197px;
}

input[type=file]::file-selector-button {
  background: #fff;
  color: grey;
  border: 1px solid lightgray;
  border-radius: 10px;
  cursor: pointer;
}