@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap);
* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #252525;
  display: flex;
  justify-content: space-between;
  height: 100vh; }
  @media (max-height: 620px) {
    body {
      height: auto; } }

.container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (max-height: 700px) {
    .container {
      display: block; } }
  @media (max-height: 620px) {
    .container {
      height: auto; } }

.form {
  padding: 75px; }
  @media (max-height: 700px) {
    .form {
      padding: 30px 75px; } }
  @media (max-width: 1000px) {
    .form {
      width: calc(100% - 300px); } }
  @media (max-width: 800px) {
    .form {
      width: 100%; } }
  @media (max-width: 700px) {
    .form {
      padding: 20px; } }

.contents {
  position: relative; }
  .contents .result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: #fff;
    z-index: 1; }
    .contents .result .title {
      font-weight: 700;
      font-size: 24px;
      padding-bottom: 15px; }
    .contents .result .message {
      max-width: 350px;
      line-height: 2em; }
    .contents .result.active {
      display: flex; }

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 390px; }
  @media (max-width: 450px) {
    .logos img {
      max-width: 130px; } }

h1 {
  font-weight: 700;
  font-size: 20px;
  margin: 55px 0 15px; }
  @media (max-height: 700px) {
    h1 {
      margin: 15px 0 0; } }

.blurb {
  line-height: 2em;
  margin-bottom: 25px;
  max-width: 500px; }

input {
  border: 1px solid #D9D9D9;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 10px;
  display: block;
  border-radius: 3px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 15px;
  outline: none;
  transition: box-shadow .15s ease;
  box-shadow: none; }
  input:focus-within {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  input.error {
    border: 1px solid #D71921; }

label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  padding-bottom: 3px; }

button {
  background-color: #D71921;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 12px 70px;
  margin-top: 15px;
  border: 0;
  cursor: pointer; }

.legal {
  display: flex;
  position: absolute;
  bottom: 20px; }
  @media (max-height: 620px) {
    .legal {
      position: relative;
      bottom: auto;
      margin-top: 30px; } }

a:link,
a:active,
a:visited {
  color: #A4A4A4;
  font-size: 10px;
  text-decoration: none;
  display: inline-block;
  margin-right: 30px; }

a:hover {
  text-decoration: underline; }

.graphic {
  background: linear-gradient(to top right, #DCE3EC, #FFFFFF);
  padding: 100px 0;
  overflow: hidden; }
  @media (max-height: 700px) {
    .graphic {
      padding: 50px 0; } }
  @media (max-width: 1000px) {
    .graphic {
      width: 300px; } }
  @media (max-width: 800px) {
    .graphic {
      display: none; } }

.window {
  width: 530px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center; }
  .window img {
    max-width: calc(100% - 50px);
    position: relative;
    z-index: 1; }
    @media (max-height: 700px) {
      .window img {
        max-height: 350px; } }
    @media (max-width: 1000px) {
      .window img {
        max-width: calc(100% - 10px); } }
  .window .grid {
    position: absolute;
    z-index: 0; }
    .window .grid.grid1 {
      top: -30px;
      left: -30px; }
    .window .grid.grid2 {
      right: -30px;
      bottom: -30px; }
  .window .box {
    position: absolute;
    z-index: 2; }
    @media (max-width: 1000px) {
      .window .box {
        display: none; } }
    .window .box.check {
      left: -30px;
      top: calc(50% - 10px);
      animation: float 6s ease-in-out 1s infinite; }
    .window .box.bind {
      bottom: 100px;
      right: 0px;
      animation: float 6s ease-in-out 2s infinite; }
    .window .box.shield {
      top: 25%;
      right: -30px;
      animation: float 6s ease-in-out 3s infinite; }

.ibynd {
  margin-top: 50px;
  text-align: center; }

h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 10px 0; }

.tagline {
  max-width: 370px;
  margin: 0 auto;
  text-align: center;
  line-height: 2em; }
  @media (max-width: 1000px) {
    .tagline {
      padding: 0 25px; } }

.appear {
  opacity: 0;
  transform: translatey(10px);
  animation: slideUp .3s ease forwards; }
  .appear.seq1 {
    animation-delay: 0.15s; }
  .appear.seq2 {
    animation-delay: 0.3s; }
  .appear.seq3 {
    animation-delay: 0.45s; }
  .appear.seq4 {
    animation-delay: 0.6s; }
  .appear.seq5 {
    animation-delay: 0.75s; }
  .appear.seq6 {
    animation-delay: 0.9s; }
  .appear.seq7 {
    animation-delay: 1.05s; }
  .appear.seq8 {
    animation-delay: 1.2s; }

@keyframes slideUp {
  0% {
    transform: translatey(10px);
    opacity: 0; }
  100% {
    transform: translatey(0);
    opacity: 1; } }

@keyframes float {
  0% {
    transform: translatey(0px); }
  50% {
    transform: translatey(-8px); }
  100% {
    transform: translatey(0px); } }

