body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

* {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

h1 {
  font-size: 50px;
  padding: 0;
  margin: 0;
}

input,
button {
  border: none;
  outline: none;
  background: none;
}

input {
  border: 1px solid #000000;
  margin: 5px;
  height: 30px;
  width: calc(100% - 150px);
  color: #000000;
  letter-spacing: 2px;
  padding: 0 1em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

input:focus {
  transition: all 0.3s;
  outline: 3px solid rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

input::placeholder {
  color: #bebdbd;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.left {
  width: 250px;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.left_container {
  margin-top: 50px;
}

.left img {
  width: 120px;
}

.right {
  width: calc(100% - 250px);
  background: #000 url(images/bg.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}

.head,
.body,
.input_group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head,
.body {
  width: 150%;
  text-align: center;
  margin-left: -25%;
  padding: 30px 0 40px;
  margin-bottom: 20px;
  font-family: Avenir Next;
}

.input_group div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  margin-left: -25%;
  display: flex;
  justify-content: center;
  width: 150%;
  text-align: center;
  margin-bottom: 35px;
  font-family: Avenir Next;
}

.btn_bar {
  width: 500px;
  height: 166px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_bar button {
  display: flex;
  border-radius: 20px;
  cursor: pointer;
  width: 80%;
  justify-content: center;
  align-items: center;
  height: 70px;
  line-height: 70px;
  padding: 0;
  font-family: AvenirNext-Medium;
  font-size: 16px;
  background: #5915e1;
  color: #fff;
  position: relative;
}

.btn_bar button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
}

.zz {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popover_container {
  padding: 20px;
  border-radius: 10px;
  color: #000;
  margin-left: -20%;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  flex-direction: column;
  transform-origin: center center;
  transition: all 0.5s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.popover_container.active {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.input_group {
  width: 80%;
}

.input_group div {
  width: 100%;
}

.btn_group {
  /* background-color: #5915e1; */
  display: flex;
  justify-content: center;
}

.btn_group a {
  background-color: #5915e1;
  height: 30px;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn_group img {
  width: 20px;
}

.btn_group button {
  margin-left: 50px;
  cursor: pointer;
  background-color: #ee4b05;
  height: 40px;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  color: #fff;
  -o-border-radius: 5px;
  transition: all 3s;
  -webkit-transition: all 3s;
  -moz-transition: all 3s;
  -ms-transition: all 3s;
  -o-transition: all 3s;
}

.btn_group button:hover {
  background-color: #ff1205;
}

.info {
  width: 90%;
  padding: 10px 0;
  font-size: 14px;
  color: #999;
}

.info > div {
  display: flex;
  margin: 5px 0;
  justify-content: space-between;
}

.info span {
  width: calc(100% - 70px);
  word-wrap: break-word;
}

@media screen and (max-width: 1000px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .left {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 20px;
  }

  .left_container {
    margin-top: 0;
  }

  .left_container .handoff {
    display: none;
  }

  .right {
    width: 100vw;
    height: 100%;
  }

  .btn_bar {
    background: transparent !important;
  }

  .btn_bar button {
    /* width: 90% !important; */
  }

  .popover_container {
    width: 80%;
    margin-left: 0;
  }

  .input_group {
    width: 90%;
  }

  .input_group input {
    letter-spacing: 0;
  }
}
