/* Form Field Label */



div.loginpage {
    background: #003057;
    padding: 100px 0px;
    height: 600px;
}

div.login {
    text-align: center;
}

table.login {
    margin: 0 auto;
}

table.login input {
    width: 250px;
}

    table.login input[type=submit] {
        width: 150px;
    }

td.bottom a {
    color: white;
    text-decoration: none;
}


table.form,
table.login {
}

    table.form td,
    table.login td {
        padding: 10px;
    }

    table.form .button,
    table.form input[type=submit],
    table.login .button,
    table.login input[type=submit] {
        /*margin-top: 15px;*/
        /*border-radius: 20px;*/
        text-transform: inherit;
    }

.formElement {
    text-align: left;
    padding-bottom: 10px;
}

    .formElement input,
    .formElement textarea,
    .formElement select {
        width: 100%;
        padding: 10px;
        padding-top: 25px;
        margin-bottom: 5px;
        border: solid 1px #CCCCCC;
        font-size: 16px;
        color: #231f20;
        height: 50px;
        /*border-radius: 15px;*/
    }

    .formElement label {
        font-size: 16px;
        /*line-height: 50px;*/
        color: #757575;
        margin-left: .9rem;
    }

        .formElement label.active {
            position: absolute;
            font-size: 14px;
            margin-top: .1rem;
            color: #231f20;
            background: transparent;
            line-height: 25px;
        }

        .formElement label.inactive {
            position: absolute;
            margin-top: 1.0rem;
            cursor: text;
            color: #999999;
        }

        .formElement label.transition {
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            -o-transition: all .2s linear;
            transition: all .2s linear;
        }

    /* Qty numerical field for the above */
    .formElement.productquantity {
        position: relative;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

div.cartWrapper .formElement.productquantity {
    margin-top: 15px;
}

.formElement input[type=number]::-webkit-inner-spin-button,
.formElement input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.formElement.productquantity input {
    float: left;
    display: block;
    padding-left: 20px;
    border: 1px solid #eee;
}

    .formElement.productquantity input:focus {
        outline: 0;
    }

.formElement .quantity-nav {
    float: left;
    position: relative;
    height: 58px;
}

.formElement .quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 20px;
    text-align: center;
    color: #333;
    font-size: 22px;
    font-family: Arial, sans-serif !important;
    line-height: 28px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .formElement .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0;
        border-bottom: 1px solid #eee;
    }

    .formElement .quantity-button.quantity-down {
        position: absolute;
        bottom: -1px;
        height: 50%;
    }

.formElement select {
    cursor: pointer;
    width: 96%;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 29px) calc(2em + 2px), calc(100% - 25px) calc(2em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .formElement select::-ms-expand {
        display: none;
    }

.formElement input:focus {
    background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%) background-position: calc(100% - 25px) 1.2em, calc(100% - 30px) 1.2em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: #003057;
    border: 2px solid #003057;
    outline: 0;
}
