* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: montserrat, sans-serif;
  }
  
  .page-wrap {
    display: flex;
    min-height: 100vh;
  }
  .middle-panel {
    flex: 1 1 66.666%;
    background-image: linear-gradient(to bottom right, #ffffff, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .middle-panel .illustration {
    margin-bottom: 50px;
  }
  
  .middle-panel h2 {
    color: #FFF;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
  }
  
  .left-panel {
    flex: 1 1 66.666%;
    background-image: linear-gradient(to bottom right, #005c5b, #002f5b);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .left-panel .illustration {
    margin-bottom: 50px;
  }
  
  .left-panel h2 {
    color: #FFF;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
  }
  
  .right-panel {
    flex: 1 1 33.333%;
    padding: 25px;
  }
  
  .right-panel h1 {
    color: #002f5b;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  
  .right-panel h1 strong {
    color: #005c5b;
    font-weight: 900;
  }
  
  .animated-form h3 {
    color: #666;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 45px;
  }
  
  .animated-form .form-group {
    position: relative;
    display: flex;
    margin-bottom: 45px;
  }
  
  .form-group.flex-end {
    justify-content: flex-end;
  }
  
  .animated-form .registering{
    text-align: center;
    color: #AAA;
    font-size: 13px;
  }

  .animated-form .form-group label {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    color: #AAA;
    font-size: 20px;
    transition: 0.4s ease-out;
  }
  
  .animated-form .form-group input {
    display: block;
    width: 100%;
    padding: 10px 0px;
    border: none;
    outline: none;
    background: none;
    border-bottom: 3px solid #AAA;
  
    color: #666;
    font-size: 20px;
    transition: 0.4s ease-out;
  }
  
  .animated-form .form-group:focus-within label,
  .animated-form .form-group.has-content label {
    top: 0px;
    transform: translateY(-100%);
    color: #002f5b;
  }
  
  .animated-form .form-group:focus-within input, 
  .animated-form .form-group.has-content input {
    border-bottom-color: #002f5b;
  }
  .animated-form .form-group.flex-end {
    margin-bottom: 25px;
  }
  .animated-form .form-group .button {
    display: inline-block;
    width: auto;
    padding: 15px 60px;
    border: 3px solid #002f5b;
    border-radius: 999px;
    background-image: linear-gradient(to right, transparent 50%, #005c5b 50%, #002f5b);
    background-size: 200%;
    transform: translateX(-50%);
  
    color: #002f5b;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .animated-form .form-group .button:hover {
    color: #FFF;
    background-position: 100%;
    border: 3px solid #FFF;
  }

