﻿/* Green buttons - covers ASP.NET Button controls (render as input[type=submit]),
   plain buttons, and link-styled buttons */
input[type=submit], input[type=button], button, .btn {
    background: #0a6f39; /* fallback for old browsers */
    background: linear-gradient(to right, #1a4a2e, #0e8c4a);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    padding: 8px 24px;
s    cursor: pointer;
}

input[type=submit]:hover, input[type=button]:hover, button:hover, .btn:hover {
    background: #0e8c4a;
    background: linear-gradient(to right, #0e8c4a, #1a4a2e);
}

input[type="submit"]:disabled,
input[type="button"]:disabled,
button:disabled {
    background: #999999;
    cursor: default;
}

/* Matching text inputs - thin blue border, rounded corners */
input[type="text"],
input[type="password"] {
    border: 1px solid #3b5998;
    border-radius: 3px;
    padding: 6px 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0e8c4a;
    outline: none;
}