/*
* inputs.css
*
* Copyright (c) 2014, NETGEAR, Inc.
* 350 East Plumeria, San Jose California, 95134, U.S.A.
* All rights reserved.
*
*
* This software is the confidential and proprietary information of
* NETGEAR, Inc. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with NETGEAR.
*
* sergey.yakubovsky@netgear.com
*
*/

input, input[type="radio"], input[type="checkbox"]
{
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border: #a4a4a2 solid 1px;
    height: 44px;
}
.ie8 input, input[type="radio"], input[type="checkbox"]
{
    line-height: 40px;
}
input[type="text"], input[type="password"], input[type="email"], select
{
    padding: 1px 5px;
    border-radius: 4px;
    box-shadow: inset 0 6px 5px -5px #ccc;
}
.ie8 select
{
    padding: 10px 5px;
}
select
{
    display: inline-block;
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    vertical-align: middle;
    background-color: #ffffff;
    border: #a4a4a2 solid 1px;
}

input[type="text"].ng-invalid.ng-dirty, input[type="password"].ng-invalid.ng-dirty, input[type="email"].ng-invalid.ng-dirty, select.ng-invalid.ng-dirty
{
    border-color: #DC0451;
}

input[type="checkbox"], input[type="radio"]
{
    background-color: transparent;
    vertical-align: middle;
    height: inherit;
    margin: 0 !important;
    width: auto;
}

input:focus, select:focus, button:focus
{
    outline: none;
}

button, [type="button"]
{
    height: 44px;
    font-size: 17px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #00a1de;
    border: 0;
    margin: 0;
    cursor: pointer;
}

button:focus, button:hover, button.pressed, [type="button"]:focus, [type="button"]:hover, [type="button"].pressed
{
    background-color: #20b9f0;
}

button:active, [type="button"]:active
{
    background-color: #039ed5;
}

button[disabled=disabled], [type="button"][disabled=disabled]
{
    background-color: #aaa !important;
    cursor: default;
}
