@media(max-width: 786px) {
    .reverse-columns {
      flex-direction: column-reverse;
      display: flex;
    }
    .register {
      margin-top: 0rem !important;
    }
  }
  
  :root {
    --shadowDark: #D9DDE6;
    --brandColor: hsl(166, 67%, 51%);
    --textDark: hsla(0, 0%, 0%, 0.66);
    --textLight: hsla(0, 0%, 0%, 0.33);
  }

  .titled {
    font-size: 58px !important;
    font-weight: 400 !important;
    line-height: 64px !important;
  }

  .subtitled {
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
  }
  
  .hero-body {
    justify-content: center;
  }
  
  .login {
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 2px 2px 4px var(--shadowDark), -2px -2px 4px var(--shadowDark);
  }
  
  input {
    background: var(--shadowDark) !important;
    font-size: 1rem;
  }
  
  a {
    font-weight: 600;
  }

  .field:not(:last-child) {
    margin-bottom: 1rem;
    }

    .left,
    .right {
    padding: 4.5rem !important;
    }

    .left {
    border-right: 5px solid var(--background);
    }

    .left .title {
    font-weight: 800;
    letter-spacing: -2px;
    }

    .left .colored {
    color: var(--brandColor);
    font-weight: 500;
    margin-top: 1rem !important;
    letter-spacing: -1px;
    }

    .left p {
    color: var(--textLight);
    font-size: 1.15rem;
    }

    .right .title {
    font-weight: 800;
    letter-spacing: -1px;
    }

    .right small {
    color: var(--textLight);
    }

    input:focus {
    border-color: var(--brandColor) !important;
    box-shadow: 0 0 0 1px var(--brandColor) !important;
    }