/* --------------------------------------------------------------

   forms.css

-------------------------------------------------------------- */

label {  }


/* Fieldsets */
fieldset    { padding:0; margin: 0; }
legend      { font-weight: bold; font-size:1em; margin: 0 0 0 0px; }

/* Text fields */
input.text, input.title, .frmTitle input, .frmText input   { width: 300px; font-size: 1em; }
input.text, input.title, .frmTitle input, .frmText input    { border:1px solid #bbb; background: url(../../img/input-text.png) repeat-x top #FFF; padding:5px 5px; }
input.text:focus, input.title:focus, .frmTitle input:focus, .frmText input:focus { /*border:1px solid #999;*/ }
input.title, .frmTitle input { font-size: 1.2em; font-weight: bold; }

.baseFormTable input.chckbx, .frmChckbx input, input.chckbx, .chckbx input { border: none !important;  margin-right: 5px; }

input, textarea{ outline:none;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
}
input:focus, textarea:focus {
    box-shadow: 0 0 5px rgba(0, 119, 199, 1);
    -webkit-box-shadow: 0 0 5px rgba(0, 119, 199, 1);
    -moz-box-shadow: 0 0 5px rgba(0, 119, 199, 1);
	border: 1px solid #0077C7 !important;
}
input[type=checkbox]:focus, input.radio:focus; input.checkbox:focus, .frmChckbx input:focus, .chckbx input:focus  { border: 0 !important;}

/* Textareas */
textarea            { font-size: 1em; width: 400px; height: 200px; margin:0.5em 0.5em 0.5em 0; line-height: 1.5 }
textarea            { border:1px solid #bbb; background: url(../../img/input-text.png) repeat-x top #FFF; padding:5px; }
textarea:focus      { border:1px solid #999;  }
textarea.short 		{ height: 50px; }

/* Select fields */
select              { height: 27px; border:1px solid #ccc; background:#FFF; width:200px;  padding: 3px; }
select:focus        { border:1px solid #999;  }
option { padding: 0 0 3px 0; line-height: 2.5em; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice,
.success,
.warning ,
.info   { padding: .6em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }

button {
	font-size: 1em; font-weight: bold; border: none; display: inline-block; background: #00abe8; padding: 0.4em 1.3em; color: #FFF; text-transform: uppercase; -webkit-border-radius: 3px; -moz-border-radius: 3px;
}
button:hover { background: #000; }
label.topLabel { margin-bottom: 5px; display: block;}
