.cta {
    cursor: pointer;
}

/* Actual signup screen. Hidden from view until the user clicks the button. */
#signupscreen h1 {
    color: #00aeef;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
#signupscreen {
    overflow: hidden;
}
#signup p {
    margin-top: 5px;
    margin-bottom: 5px;
}
#signup form {
    display: inline-block;
}

#signup label {
    position: relative;
    /*clear: left;*/
    /*float: left;*/
    display: inline-block;
    width: 12em;
    margin-right: 5px;
    font-size: 16px;
    text-align: right;
    vertical-align: baseline;
}
#signup form input, #signup form select {
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-bottom: 16px;
}
#signup input[type="submit"] {
    width: 150px;
    height: 32px;
    margin-left: 355px;
    padding: 0px;
    display: inline-block;
    font-weight: bold;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

#signup {
    overflow: hidden;
}
#signup fieldset {
    margin: 0px;
    padding: 0px;
}
#signup fieldset legend {
    padding-left: 165px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top: 15px;
    font-weight: bold;
}
.formstep {
    width: 600px;
    display: inline-block;
    padding-top: 5px;
    vertical-align: top;
}


/* Both these nodes (signupfields and signupFormForm) need to be super-wide to
 * contain the whole width of the form. It works by sliding the form left at
 * each step, and having a hidden overflow div to show only the current step.
 */
#signupfields {
    width: 2600px;
    display: inline;
    position: relative;
}
#signupFormForm {
    width: 2600px;
    /*height: 230px;*/
    position: relative;
}


#signupcomplete {
    display: none;
}
#formprogressbar {
    height: 20px;
    margin-bottom: 5px;
    margin-top: 3px;
}
#errorMessage {
    text-align: center;
    width: 500px;
    min-height: 30px;
    background-color: #eee;
    border: 1px #ccc solid;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    display: none;
    margin-left: 25px;
    margin-top: 5px;
    margin-bottom: 16px;
    padding-top: 10px;
    padding-bottom: 0px;
    vertical-align: middle;
    color: #f1592a;
    font-weight: bold;
}
#signup #throbber {
    display: none;
    vertical-align: middle;
}
