/** Old styles imported */
/* Forms.css */
/**
 * Adaptivetheme takes a pretty heavy handed approach to form styling,
 * this is so you can have decent looking forms without having to do a
 * lot of work. The CSS is included in full, including all positioning,
 * so you can change anything you want.
 */
body {
    font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
}

form {
  margin: 0;
  padding: 0;
}

.form-item label {
  font-weight: 400;
  width: 80px;
    display: inline-block;
}

input {
  margin: 0;
  max-width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

input.form-radio {
  -webkit-appearance: radio;
}

input.text,
input.title,
textarea,
select {
  border: 1px solid #cccccc;
  margin: 0;
  padding: 6px;
}

/* Focus styles for accessibility and usabiltiy. */
.form-text:focus,
.form-checkbox:focus,
.form-radio:focus,
.form-select:focus {
  border: 1px solid #ffcc00;
  background: #ffffdf;
}

textarea:focus {
  border: 1px solid #ffcc00;
  background: #fff;
}

/* Inputs and textarea */
input.text,
input.title {
  padding: .5em;
}

input.form-text,
textarea {
  border: 1px solid #cccccc;
  height: auto;
  padding: 8px;
  width: 100%;
  	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

textarea,
input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: normal;
}

div.resizable-textarea textarea {
  /*margin-top: 0;*/
}


.form-item {
    margin-bottom: 10px;
}

.form-submit {
  background: url("images/menu-bg-hover.png") repeat-x scroll left top rgba(0, 0, 0, 0);
  border: 1px solid #4a4a4a;
  margin-top: 10px;
  padding: 8px 0;
  width: 100%;
  color: #fff;
  font-weight: bold;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  cursor: pointer;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.form-submit:hover {
    background: #606163;
}

#helium-extranet-form-extranet-login-form {
    max-width: 100%;
}

.apply {
  overflow: auto;
  clear: both;
}

.apply h2 {
    margin-bottom: 0;
}

.apply-login {
  background: url("images/btn-large-bg.png") no-repeat scroll right center transparent;
  border: medium none;
  color: #FFFFFF;
  display: block;
  font-size: 11px;
  font-weight: bold;
  height: 23px;
  padding-left: 8px;
  padding-top: 7px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  width: 280px;
}

.apply-login:link,
.apply-login:visited {
    color: #FFF;
}

#block-system-main {
    margin-bottom: 0;
}

.extranet-error {
    color: #800;
}