.environment {
    width: 380px;
    height: 400px;
    /*background-color: #eeeeee;*/
    margin: 0;
    padding: 0;
}
body {
    background-color: rgba( 255, 255, 255, 0 );
}
.login-card {
    /*padding: 40px;*/
    background-color: rgba( 255, 255, 255, 0 );
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;

}

.login-card h1 {
    text-align: left;
    font-size: 30px;
    color: #0f4186;
}

.login-card h3 {

    font-weight: 400;
    text-align: left;
    color: #0f4186;
    font-size: 20px;

}

.login-card input[type=text], input[type=password] {
    height: 44px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
    -webkit-appearance: none;
    border: 1px solid #0f4186;
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.login-card input[type=button] {
    width: 50%;
    height: 30px;
    display: block;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #2f5bb7;
    border-radius:  5px;
    background-color: #0f4186;
    color: white;
    cursor: pointer;
}

.login-card a {
    text-decoration: none;
    font-size: 15px;
}

.login-card input[type=button]:hover {
    background-color: midnightblue;
}