html {
  height: 100%;
  box-sizing: border-box;
  font-size: 12px;
}
body {
  margin: 0px;
  padding: 0px;
  height: 100%;
}

.root {
  width: 100%;
  height: 100%;
  background-image: url('../img/bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.root .title{
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
  width: 597px;
  height: 111px;
  background-image: url('../img/t-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.root .input{
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  width: 607px;
  height: 114px;
  background-image: url('../img/input-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.root .input label{
  width: 290px;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

input:focus {
  outline: none;
}
.root .input input{
  margin-top: 10px;
  height: 60%;
  width: 325px;
  font-weight: bold;
  font-size: 28px;
  color: rgb(73, 73, 73);
  background-color: transparent;
  border: none;
  letter-spacing: 1px;
}
.root .input img{
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-42%);
  cursor: pointer;
}