* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  font-family: sans-serif;
}
body {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.box {
  background-color: #fff;
  padding: 30px;
  box-shadow: 1px 3px 20px 8px rgb(0 128 255);
}
.box h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 26px;
  color: #015a96;
}
input {
  padding: 20px;
  user-select: none;
  height: 50px;
  width: 400px;
  border-radius: 8px;
  border: none;
  border: 2px solid #4D6AFF;
  outline: none;
  font-size: 20px;
}
.buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
button {
  font-size: 15px;
  margin-top: 40px;
  border: 2px solid #7100cf;
  width: 155px;
  height: 50px;
  text-align: center;
  background-color: #0080FF;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
}