body {
  background-color: azure;
}

.container {
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: 1000px;
  max-width: 100%;
  border-radius: 5px;
  display: flex;
  height: 400px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

h1,
p {
  text-align: center;
}

.left {
  width: 60%;
  border-right: 1px solid #fa2f2d;
  background-color: #fa2f2d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0 0 5px;
}

.left h1,
.left p {
  color: #fff;
}

.right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
}

.right p {
  color: #7b7b80;
}

.grupo-input {
  width: 85%;
  position: relative;
  margin-bottom: 15px;
}

.input-codigo {
  width: 100%;
  height: 40px;
  border: 3px solid #b3b3b3;
}

.input-codigo,
.button-acesso {
  outline: 0;
}

.codigo-acesso {
  position: absolute;
  right: 4px;
  top: 12px;
}

.button-acesso {
  background: #fa2f2d;
  width: 150px;
  height: 40px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sub_text {
  font-size: 12px;
  margin-top: 10px;
  text-decoration: none;
  color: #666;
}

@media (max-width: 700px) {
  body {
    background-color: #fff ;
  }

  .container {
    align-items: normal;
  }

  .content {
    width: 100%;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .left,
  .right {
    width: 100vw;
    border-radius: 0 !important;
  }

  .left h1 {
    font-size: 20px;
  }

  .left p {
    font-size: 13px;
  }

  .left {
    padding: 40px 0;
  }

  .right {
    padding: 20px 0;
  }
}
