* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}
body {
  background-color: #dbdcdd;
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 110vh;
}
.box {
  background-color: #fff;
  padding-top: 40px;
  padding: 40px;
}
.box h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 28px;
  color: #015a96;
  font-family: sans-serif;
}
input {
  padding: 30px;
  user-select: none;
  height: 60px;
  width: 425px;
  border-radius: 8px;
  border: none;
  border: 2px solid rgb(13, 152, 245);
  outline: none;
  font-size: 23px;
}
input::placeholder {
  font-size: 24px;
}
#button {
  font-family: sans-serif;
  font-size: 15px;

  margin-top: 16px;
  border: 2px solid rgb(20, 139, 250);
  width: 155px;
  height: 50px;
  text-align: center;
  background-color: #0c81ee;
  display: flex;
  color: rgb(255, 255, 255);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 7px;
}
.btn2 {
  margin-left: 110px;
}

#button:hover {
  color: #fff;
  background-color: black;
}
