* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#response {
  position: relative;
  height: 100vh;
}

#response .response {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.response-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  margin:2rem;
}

.response-logo img {
  height: 35px;
}

.response {
  max-width: 640px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.response .response-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 140px;
  height: 140px;
  background: transparent;
  background-size: cover;
}
.response-icon.emoji {
  background-image: url('../img/emoji.svg');
}
.response-icon.lock {
  background-image: url('../img/lock-alt.svg');
}
.response-icon.expired {
  background-image: url('../img/expired.svg');
}

.response-icon.maintenance {
  background-image: url('../img/cog.svg');
}

.response .response-icon:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2.4);
  -ms-transform: scale(2.4);
  transform: scale(2.4);
  border-radius: 50%;
  background-color: #E5EEF4;
  z-index: -1;
}

.response h1 {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #151723;
  text-transform: uppercase;
}

.response h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  color: #151723;
}

.response p {
  font-family: 'Inter', sans-serif;
  color: #999fa5;
  font-weight: 400;
  line-height: 1.6rem
}


@media only screen and (max-width: 767px) {
  .response .response-icon {
    width: 110px;
    height: 110px;
  }
  .response {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}

.m-button {
  background: #0099CC;
  border: 1px solid #0099CC;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 1rem 2.5rem;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  margin-top: 1rem;
  cursor: pointer;
}