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

.login {
    color: white;
    background-color: #ffffff;
    /* background: 
    -webkit-linear-gradient(to right, #267871, #136a8a);
  background: 
    linear-gradient(to right, #267871, #136a8a);*/
    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;
        color: black;
    }

input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    height: 60px;
    line-height: 60px;
    border-radius: 4px;
}

.login .form input[type=text].text {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0;
    color: #8a8b8e;
    border: 1px solid #c2c0ca;
    font-style: normal;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    background: none;
}

.login .form .text::placeholder {
    color: dimgrey;
}

.login .form input[type=password].password {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0;
    color: #8a8b8e;
    border: 1px solid #c2c0ca;
    font-style: normal;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    background: none;
}

.login .form .password::placeholder {
    color: dimgrey;
}

.login .form .btn-login {
    border: none;
    display: block;
    background-color: #3ca9e2;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 18px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

    .login .form .btn-login:hover {
        background-color: #329dd5;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

.login .forgot {
    text-decoration: none;
    color: black;
    float: right;
}

footer {
    position: absolute;
    color: #136a8a;
    bottom: 10px;
    padding-left: 20px;
}

    footer p {
        display: inline;
    }

    footer a {
        color: green;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

    footer .heart {
        color: #B22222;
        font-size: 1.5em
    }
