.login {
    width: 400px;
    margin: auto;
    box-shadow: 0 0.1875rem 0.375rem rgba(0,0,0,0.25);
    padding: 30px;
    overflow: hidden;
    background-color: #038f0c;
}

.login label {
    width: 150px;
    float: left;
    margin: 5px;
    padding: 5px;
    color: #f5f5f5 ;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login input[type=text],
.login input[type=password] {
    width: 40%;
    float: left;
    margin: 3px;
    padding: 8px 5px;
    margin-bottom: 5px;
    font-size: 14px;
    background: #27292c;
    border: 1px solid #000;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    color: white;
}

.login input[type=text]:focus, 
.login input[type=password]:focus {
    border-color: #51cbee;  /* highlight selected area */
    outline: none; /* Remove Chrome outline */
}


/* submit button */
.login input[type=submit] {
    width: 190px;
    float: right;
    padding: 10px;
    margin-top: 30px;
    margin-right: 50px;
    background: #07412b ;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor:pointer;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
}

.login input[type=submit]:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.login input[type=submit]:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}
.login input[type=submit]:hover .no-boxshadow {
    background: #2a92d8;
}