body{
    font-size: 11px;
}
a{
    color: #f99293;
}
.form-group.required .control-label:after {
    padding-left: 2px;
    content:"*";
    color:red;
}
.RegisterForm{
    min-width: 400px;
    font-size: 13px;
}
.RegWrapper input,
.RegWrapper label{
    font-size: 15px !important;
}
.RegWrapper{
    display: block;
    width: 100%;
    min-height: 250px;
    margin: 0 auto;
    margin-top: 80px;
}
.LoginWrapper{
    display: block;
    width: 100%;
    max-width: 320px;
    min-height: 250px;
    margin: 0 auto;
    margin-top: 80px;
}
.LoginWrapper form{
    width: 100%;
    max-width: 250px;
    padding-top: 30px;
}
.LoginWrapper button{
    float: right;
    width: 140px;
    height: 32px;
    line-height: 32px;
    background-color: #0275d8;
    border: solid 1px #0275d8;
    border-radius: 3px;
    font-size: 15px;
    color: #fff;
    margin-top: 8px;;
    
}
input[type=text],
input[type=email],
input[type=date],
input[type=password]{
    border: solid 1px #c0c0c0;
    padding: 3px;
    height: 30px;
    color: #333;
    background: #fff;
    margin-bottom: 8px;
    float: right;
    font-size: 11px;  
    border-radius: 3px;
    min-width: 188px;
}
.RegisterForm textarea{
    font-size: 1rem;
}
.RegisterForm .form-control{
    min-width: 400px;
    font-size: 1rem;
}
h2{
    font-size: 22px;
    padding-top: 2px;
    color: #676767;
    font-family: 'Roboto';
} 
.RegistrationForm select{
    font-size: 13px !important;
    height: 31px !important;
    padding: .25rem .25rem !important;;
}
@media only screen and (min-width: 768px) {
    /* tablets and desktop */
}

@media only screen and (max-width: 767px) {
    /* phones */
    .LoginWrapper{
        margin-top: 50px;
        max-width: 90%;
    }
    .LoginWrapper form{
        width: 100%;
        max-width: 100%;
        padding-top: 30px;
    }
    input[type=text],input[type=password]{
        width: 100%;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* portrait phones */
    .LoginWrapper{
        margin-top: 50px;
        max-width: 90%;
    }
    .LoginWrapper form{
        width: 100%;
        max-width: 100%;
        padding-top: 30px;
    }
    input[type=text],input[type=password]{
        width: 100%;
    }
}
