 body {
    /* background: #00a1c9; */
    background-image: url(images/signup.jpg);
    font-family: Assistant, sans-serif;
    display: flex;
    min-height: 90vh;
    /* color: black !important; */
  }
  .login {
    color:#126a8a;
    background: #136a8a;
    background: 
      -webkit-linear-gradient(to right,#ffffff, #ffffff);
    background: 
      linear-gradient(to right, white, white);
    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 .head {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login .head .company {
    font-size: 2.2em;
  }
  .login .msg {
    text-align: center;
  }
  .login .form input[type=text].text {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px #126a8a;
    width: 100%;
    color: #126a8a;
    font-size: 1em;
    outline: none;
  }
  .login .form .text::placeholder {
    color:#126a8a;
  }
  .login .form input[type=password].password {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px #126a8a;
    width: 100%;
    color: #126a8a;
    font-size: 1em;
    outline: none;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .login .form .password::placeholder {
    color: #126a8a;
  }
  .login .form .btn-login {
    background: none;
    text-decoration: none;
    color: #126a8a;
    box-shadow: 0px 0px 0px 2px #126a8a;
    border-radius: 3px;
    padding: 5px 2em;
    transition: 0.5s;
  }
  .login .form .btn-login:hover {
    background: #126a8a;
    color: dimgray;
    transition: 0.5s;
  }
  .login .forgot {
    text-decoration: none;
    color: #126a8a;
    float: right;
  }
  footer {
    position: absolute;
    color: #136a8a;
    bottom: 10px;
    padding-left: 20px;
  }
 