/** Generated by QuickPaging **/
.invite-bg{
    min-height:760px;
    background: url('//www.parsonline.com/data/uploaded_files/1495282438-4.jpg') center center no-repeat scroll;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}
.form-section{
    position: relative;
    top: 0;
    background: rgba(240,240,240,1);
    border: 1px solid #ccc;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
    transition: all 0.5s ease;
}
.form-section h3{
    background: #005baa;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.form-section form{
    padding: 0 10px 0 20px;
}
.form-section .form-control{
    height: 45px;
    background: #f8f8f8;
    color: #686868;
    border: none;
    box-shadow: none;
    transition: all 0.5s ease;
}
.form-section .form-control:focus{
    background: #fff;
    color: #000;
}
.form-section .form-group:after{
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #ccc;
    transition: all 0.5s ease;
}

.form-section .form-group.active:after{
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: #005baa;
}

.form-section .input-group-addon {
    border: none !important;
    background: transparent;
    padding: 0 5px;
    min-width: 40px;
    text-align: center;
    margin: 0;
}

.form-section .input-group-addon * {
    font-size: 24px;
    color: #333;
    transition: all 0.7s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);

}

.form-section .input-group-addon.active * {
    color: #005baa;
    animation: addonAnimate 1.2s linear;
}

.form-section .input-group-addon .fa-mobile {
    font-size: 36px;
}

@keyframes addonAnimate {
    0% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .form-section{
        margin: 10px 0;
        top:0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        opacity: 1;
    }
}

@media only screen and (max-device-width: 320px) {
    .form-section{
        margin: 10px 0;
        top:0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        opacity: 1;
    }
}