.header {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 40px;
    line-height: 92px;
    position: relative;
    font-family: 'Rubik Puddles', cursive, "PT Sans", Calibri, Tahoma, sans-serif;
}

body {
    background: #588157;
    font-family: Assistant, sans-serif;
    display: flex;
    min-height: 90vh;
}

.login {
    color: #e9edc9;
    background: #3A5A40;
    background: 
      -webkit-linear-gradient(to right, #A3B18A, #3A5A40);
    background: 
      linear-gradient(to right, #A3B18A, #3A5A40);
    margin: auto;
    box-shadow: 
      0px 2px 10px rgba(0,0,0,0.2), 
      0px 10px 20px rgba(0,0,0,0.3), 
      0px 30px 60px 1px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 50px;
  }

.login .header {
    display: flex;
    align-items: center;
    justify-content: center; 
}

.login .header .company {
    font-size: 2.2em;
}

.login .form input[type=text].text {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px white;
    width: 100%;
    color: white;
    font-size: 1em;
    outline: none;
}

  .login .form .text::placeholder {
    color: #D3D3D3;
  }
  .login .form input[type=password].password {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px white;
    width: 100%;
    color: white;
    font-size: 1em;
    outline: none;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .login .form .password::placeholder {
    color: #D3D3D3;
  }
  .login .form .btn-login {
    background: none;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 0px 2px white;
    border-radius: 3px;
    padding: 5px 2em;
    transition: 0.5s;
  }
  .login .form .btn-login:hover {
    background: white;
    color: dimgray;
    transition: 0.5s;
  }
  .login .forgot {
    text-decoration: none;
    color: white;
    float: right;
  }