/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */
fieldset    { border: none; padding:0px; margin:0px; }
legend      { font-weight: bold; font-size:1.2em; }
/* Form fields
-------------------------------------------------------------- */
input.text, input.title,
textarea, select {
  margin:0.5em 0;
  border:1px solid #bbb;
}
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}
input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }
/* Success, notice and error boxes
-------------------------------------------------------------- */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }


.szer110 { width: 110px; }
.szer380 { width: 380px; }
.przycisk2 { float: left; margin-left: 300px; }

label {
	float:left;
	margin:1px 10px 0px 0px;
	padding:1px 2px;
	text-align:right;
	width:90px;
}



input, select {
	border:1px solid #ccc;
	float:left;
	font-family: Trebuchet MS;
	font-size: 11px;
	margin:1px 0 5px;
	padding:1px 2px;
	width:100px;
}

.checkbox { width: 15px; border: none; }


input.submit {
	display: block;
	background-color: #888;
	border: 1px solid #999;
	margin-right: 9px;
	height: 20px;
	float: right;
	font-size: 11px;
	color:#fff;
	text-decoration:none;
	text-align: center;
	cursor: pointer;
	padding: 2px 4px;
	width: auto;
}

form { 	font-family: Trebuchet MS; }
