
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
  }
  
  
  .fa-eye::before
  {
    cursor: pointer;
    position:relative;
    display: flex;
    color: rgba(0,0,0,.6);
    top: 38px;
  }
  
  /* Wrap */
  
  .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  
  /* Section Login */
  
  .login {
    position: absolute;
    width: 390px;
    top:  50%;
    left: 50%;
    padding: 50px;
    background-color: #f7f7f7;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .login-img {
    width: 200px;
    margin-bottom: 20px;
  }
  
  .login-title {
    font-size: 3em;
    margin-bottom: .5em;
    text-transform: uppercase;
  }
  
  .form-group {
    position: relative;
    display: flex;
    margin-bottom: 1em;
  }
  
  .form-label {
    color: rgba(0,0,0,.4);
    font-weight: 600;
    position: absolute;
    margin-bottom: .6em;
  }
  
  .form-input {
    color: rgba(0,0,0,.8);
    font-weight: 600;
    background-color: #f7f7f7;
    font-size: 1em;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.3);
    padding: 1.2em 0 .8em 0;
    transition: all 300ms;
    margin-top: 3%;
    
  }
  
  .form-input:focus, .form-input:active {
    outline: none;
    padding-top: 2em;
  }
  
  
  
  .login-forgot {
    text-align: right;
  
  }
  .invalid {
    text-align: left;
  
  }
  
  .login-forgot a {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    font-size: .9em;
    font-weight: 600;
  }
  .invalid a
  {
    color: rgba(255, 0, 0, 0.6);
    text-decoration: none;
    font-size: .9em;
    font-weight: 600;
  }
  
  .login-submit {
    margin-top: 1em;
    font-family: inherit;
    letter-spacing: .1em;
    width: 100%;
    height: 35px;
    border-radius: 35px;
    border: none;
    /* background-color: #1364b1; */
    background-color: #0c60b1;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms;
  }
  
  .login-submit:hover {
    opacity: .9;
  }

  @media screen and (max-width: 600px) {
    .login-submit 
    {
      position:absolute;
      bottom: 0;
      margin-bottom: 20px;
      width: 90%;
      left: 5%;
      height: 50px;
    }
    .login
    {
      width: 100%;
      height: 100%;
      background-color: white;
    }
    .login-img
    {
      width: 250px;
      padding-bottom: 80px;
    }
    .form-input
    {
      background-color: white;
      
    }

  }