* {
  box-sizing: border-box;
}
html {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: lighter;
  font-size: 18px;
  background: url("assets/background-blurry.jpg");
  background-size: cover;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.box {
  width: 350px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  margin-top: -50px;
}

.banner {
  height: 100px;
  width: 100%;
  padding-top: 20px;
  background-color: #f9f7fa;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
}

.logo {
  height: 110px;
  width: 110px;
  margin: auto;
  background-size: 65px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("assets/icon.png");
  border-radius: 100%;
  background-color: #00261b;
}

.form {
  padding: 55px 20px 20px;
  height: 290px;
}

.title {
  text-align: center;
  margin: 0 0 30px;
}

.label {
  display: block;
  margin-bottom: 5px;
}

.input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ced6e0;
  transition: all 0.3s ease-in-out;
  padding: 5px 15px;
  background: none;
  box-sizing: border-box;
  font-size: 18px;
}

.input:hover,
.input:focus {
  color: #1a3b5d;
  border-color: #3d9cff;
}

.button {
  width: 100%;
  height: 55px;
  background: #2364d2;
  border: none;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}

.button.working {
  background: #ff9100;
}

.button.done {
  background: #00c853;
}

.button.error {
  background: #d32f2f !important;
}

.button[disabled] {
  cursor: default;
}

.footer {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.token-address {
  cursor: pointer;
}

.token-address:hover {
  text-decoration: underline;
}
