.contact-form-box{
    margin:5em auto;
    background: #fff;
    /* border-radius: 4px; */
    /* box-shadow: 0px 0px 5px 2px rgba(0,0,0,.1); */
}
.contact-form{
    overflow-y:auto;
    height:calc(100% - 6em);
    padding:0px 0.5em;
    padding-top:1em;
}
.contact-form label{
    position: relative;
    font-size: 0.875em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0B4891;
    color:#fff;
}
.contact-form i{
    position: absolute;
    top:1.15em;
    right:1em;
    font-size: 0.75em;
    color:#fff;
}
.input-feild{
    padding:0px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.input-feild>span{
    width:2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    color:#0B4891;
    text-align: center;
}
.contact-form .form-control{
    background: #eee;
    border:1px solid #ccc;
    border-radius: 0px;
}
.submit-box{
    padding:0.5rem 1rem 0px;
    display: flex;
    justify-content: flex-end;
}
/* login */
.contact-form button{
    width:calc(100% - 0.6em);
    margin:auto;
    border-radius: 0px;
}
.login-form-box{
    width:30em;
    margin:7em auto;
    background: rgba(255,255,255,1);
}
.login-form-box>h3{
    width:100%;
    color:#0B4891;
    font-weight: bold;
    text-align: center;
    line-height: 2em;
    font-size: 1.4em;
}
.login-form-box>h5{
    width:100%;
    color:#0B4891;
    font-weight: normal;
    text-align: center;
    line-height: 1.2em;
    font-size: 1.2em;
    margin-bottom:1em;
}
.create-account{
    padding:1rem 5px 0px;
    border-top:1px solid #eee;
}
.create-account>h3{
    font-size: 1.2rem;
    color:#0B4891;
}
.create-account>p{
    font-size: 0.825rem;
    margin:0px;
}
.contact-us{
    margin:10px 16px;
    line-height: 30px;
    text-align: center;
}
.contact-us>p{
    margin: 0px;
    padding: 0px;
    font-size: 1rem;
}
.contact-us>p.title{
    font-weight: bold;
    font-size: 1.25rem;
}
@media screen and (max-width:960px){
    .contact-form-box{
        margin:3em auto;
    }
}
@media screen and (max-width:576px){
    .contact-form i{
        right:3em;
    }
    .login-form-box{
        width:100%;
        height:100%;
        margin:3em 0em;
        background: rgba(255,255,255,0.7);
    }
}