#login {
    background: url(../img/bg-login.svg) no-repeat #fff;
    background-size: contain;
    background-position: right;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

#login .login {
    width: 400px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

#login .login img {
    width: 250px;
    margin-bottom: 20px;
}

#login .login .box {
    background: rgb(241, 241, 241);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #777;
    border: 4px solid #fff;
}

#login .box h4 {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 400;
}

#login .box .btn {
    margin: 30px 0;
    padding: 10px;
    border-radius: 8px;
    background: rgb(29,218,184);
    color: #fff;
}

  .form__group {
    position: relative;
    padding: 15px 0 0;
    margin: 25px 0;
    width: 100%;
  }
  
  .form__field {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    color: #555;
    padding: 15px;
    background: #fff;
    transition: border-color 0.2s;
    border-radius: 5px;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  .form__field:placeholder-shown ~ .form__label {
    font-size: 14px;
    cursor: text;
    top: 20px;
    color: #aaa;
    left: 10px;
    bottom: 10px;
  }
  
  .form__label {
    position: absolute;
    top: -5px;
    left: 10px;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
  }
  
  .form__field:focus {
    border-color: rgb(29,218,184);
    color: #555;
  }

  .form__field:focus ~ .form__label {
    position: absolute;
    top: -10px;
    left: 10px;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: rgb(29,218,184);
    transition: 0.3s;
  }
  
  /* reset input */
  .form__field:required, .form__field:invalid {
    box-shadow: none;
  }