main .content {
    display: block;
    margin: auto;
    width: 540px;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    main .content{
        width:100%;
    }
}

.content .form_container {
    display: block;
    float: left;
    margin-top: 180px;
    width: 100%;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .content .form_container {
        margin-top:20px;
    }
}
.content .form_container.tall {
    margin-top: 280px;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .content .form_container.tall {
    margin-top: 50px;
    margin-bottom: 60px;
    }
}

.form_container .error_message {
    display: block;
    float: left;
    position: relative;
    margin-top: 36px;
    margin-left: -14%;
    border-radius: 4px;
    background-color: #FBE1E2;
    color: #d30d0d;
    padding: 8px 12px 8px 43px;
    width: 128%;
}

.form_container .error_message:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 11px;
    margin-top: -12px;
    border-radius: 50%;
    background-color: #d30d0d;
    color: #FBE1E2;
    font-size: 19px;
    text-align: center;
    content: '!';
    line-height: 24px;
    width: 24px;
}

.error_message a {
    color: inherit;
    font-size: inherit;
}
.error_message a:hover, .error_message a:active {
    text-decoration: none;
}

.form_container .title {
    display: block;
    float: left;
    color: #26358C;
    font-family: 'Font1';
    font-size: 36px;
    text-align: center;
    line-height: 38px;
    padding: 20px 0px;
    width: 100%;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .form_container .title {
    font-size: 22px;
    padding: 20px;
    line-height: 22px;
    }
    .form_container .title br{
        content:"";
    }
}

.form_container .text {
    display: block;
    float: left;
    color: #666666;
    font-size: 16px;
    text-align: center;
    padding: 0px 10px;
    width: 100%;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .form_container .text {
        font-size:14px;
    }
    .form_container .text br{
        content:" ";
    }
}

.form_container .form {
    display: block;
    margin: auto;
    width: 312px;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .form_container .form {
        width: 100%;
        padding: 5%;
        max-width: 390px;
    }
}

.form label {
    display: block;
    float: left;
    margin-top: 26px;
    color: #666;
    font-size: 16px;
    width: 100%;
}
.form label.question {
    position: relative;
}
.form label + label {
    margin-top: 12px;
}

.form label .email {
    display: block;
    color: #666666;
    font-family: "Font1";
    font-size: 18px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form select {
    display: block;
    float: left;
    margin-top: 2px;
    border: 1px solid #DAD8CA;
    border-radius: 6px;
    color: #666666;
    font-size: 16px;
    line-height: 20px;
    padding: 9px 10px;
    width: 100%;
    height: 40px;
}
.form .question input[type='text'],
.form .question input[type='password'] {
    padding-right: 38px;
}
.form input[type='text']:focus,
.form input[type='password']:focus,
.form select:focus {
    border: none;
    outline: 0px;
    padding: 10px 11px;
    box-shadow: inset 0px 0px 0px 2px #98D3ED;
}

.form .question .tooltip {
    display: block;
    position: absolute;
    top: 30px;
    right: 8px;
    border-radius: 50%;
    background-color: #26358C;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    line-height: 24px;
    width: 24px;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .form .question .tooltip {
        display:none;
    }
}

.form .question .tooltip span {
    display: block;
    position: absolute;
    top: -15px;
    left: 50px;
    background-color: #FBFAF9;
    color: #666666;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    width: 210px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}
.form .question .tooltip:hover span, .form .question .tooltip:active span {
    padding: 10px;
    height: auto;
    overflow: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 250ms;
    transition: opacity 250ms;
}

.form .question .tooltip span.card{
    width: 260px;
}
.form .question .tooltip span.card img{
    display:block;
    float:left;
    width:60%;
    margin: 3% 20%;
}

.form .question .tooltip span:before {
    display: block;
    position: absolute;
    top: 20px;
    left: -9px;
    border-top: 6px solid transparent;
    border-right: 9px solid #FBFAF9;
    border-bottom: 6px solid transparent;
    content: '';
    width: 0px;
    height: 0px;
}

.form .password_level {
    display: none;
    float: right;
    margin-top: 5px;
    width: 100%;
}

.password_level .graphic {
    display: block;
    float: left;
    position: relative;
    border-radius: 6px;
    background: #c42727;
    content: '';
    width: 100%;
    height: 12px;
    overflow: hidden;
    -webkit-transition: background 1s ease-out;
    transition: background 1s ease-out;
}
.password_level.low .graphic {
    background: #c17426;
}
.password_level.medium .graphic {
    background: #c1c126;
}
.password_level.high .graphic {
    background: #72bf26;
}
.password_level.max .graphic {
    background: #26bf26;
}

.password_level .text {
    display: block;
    float: left;
    color: #888;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.form_container .button,
.form_container .loading {
    margin-top: 32px;
    margin-bottom:50px;
}

@media only screen and (max-width: 960px)  { /**#960px*/
.form_container .form .button{
    background-color: #DAD8CA;
    cursor: auto;
    margin-left: 5%;
    width: 90%;
}
}

.form_container .orange_text {
    display: block;
    float: left;
    margin-top: 30px;
    color: #1a78a6;
    font-size: 16px;
    text-align: center;
    width: 100%;
}
@media only screen and (max-width: 960px)  { /**#960px*/
    .form_container .orange_text {
        margin-bottom:50px;
    }
}

.orange_text a {
    display: inline-block;
    color: #1a78a6;
    text-align: center;
}
.orange_text a:hover {
    text-decoration: none;
}