.form .formTitle{
    font-size: 18px;
    font-weight: bold;
    font-stretch: condensed;
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.form .fullRow{
    width: 100%;
    margin-bottom: 15px;
    float: left;
    position: relative;
}

.form .halfRow{
    width: 262px;
    margin-bottom: 15px;
    float: left;
}

.form .halfRow.left{
    margin-right: 24px;
}

.form .fullRow .label,.signupForm .halfRow .label{
    font-family: Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    color: #4a4a4a;
    margin-bottom: 4px;
    display: block;
    white-space: normal;
    line-height: 1.4;
}

.form .fullRow .textField{
    background-color: #ffffff;
    border: solid 1px #9b9b9b;
    width: 100%;
    height: 37px;
    box-sizing: border-box;
}

.form .fullRow .multiTextField{
    background-color: #ffffff;
    border: solid 1px #9b9b9b;
    width: 100%;
    height: 31px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.form .fullRow .multiFieldWrapper{
    position: relative; 
}

.form .fullRow .multiFieldWrapper .multiTextField{
    width: 92%;
}

.form .fullRow .multiFieldWrapper .closeMultiField{
    position: absolute;
    top: 9px;
    right: 0px;
    height: 15px;
    cursor: pointer;
}

.form .fullRow .addMore{
    width: 91.2px;
    height: 20px;
    background-color: #9b9b9b;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    padding-top: 4px;
    cursor: pointer;
    float: left;
}

.form .fullRow .addMore:hover{
    background-color: #798b92;
}

.form .fullRow textarea{
    background-color: #ffffff;
    border: solid 1px #9b9b9b;
    width: 538px;
    height: 86px;
    padding: 6px 5px;
    resize: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.form .halfRow .textField{
    width: calc(100% - 12px);
    max-width:  100%;
    background-color: #ffffff;
    border: solid 1px #d7dfe4;
    height: 30px;
}

.form .error{
    font-size: 12px;
    color: red;
}

.form .button{
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    font-family: 'Roboto',Arial,sans-serif;
}

.form .button:hover{
    cursor: pointer;
}

.form .finish{
    background-color: #12b049;
}

.form .noMarginBottom{
    margin-bottom: 0px;
}

.form .checkbox_container {
    float: left;
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.3px;
    color: #4a4a4a;
    font-family: Helvetica, Arial, Sans-Serif;
    font-weight: normal;
    margin-top: 7px;
}

.checkbox_container input {
    position: absolute;
    opacity: 0;
    top: 2px;
}

.form .checkbox_container .checkmark {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 16px;
    height: 16px;
    background-color: #fafafa;
    border: solid 2px #dddddd;
}

.form .checkbox_container input {
  position: absolute;
  opacity: 0;
  top: 2px;
}

.form .checkbox_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form .checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

.form .checkbox_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form .rememberme {
    float: left;
    margin-top: 13px;
    margin-right: 8px;
    margin-left: 4px;
}

.form .forgot-link {
    display: block;
    padding-top: 5px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.3px;
    text-align: right;
    text-decoration: none;
    font-family: Helvetica,Arial,sans-serif;
    float: right;
}




