.loginBox {
    background-color: #fff;
    width: 350px;
    height: 340px;
    left: 50%;
    top: 50%;
    padding: 0px;
    position: absolute;
    z-index: 2;
    -moz-transform: translate(-50%, -50%) scale(0.5);
    -ms-transform: translate(-50%, -50%) scale(0.5);
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.20);
}

.loginBox.loaded {
    opacity: 1;
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.loginBox .loginWrap {
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: relative;
    padding-left: 0;
    text-align: center;
    padding-top: 0px;
}

.loginBox #signinbox {
    display: block;
}

.loginBox #forgetpassbox {
    display: none;
}

.loginBox .logoBox {
    display: inline-block;
}

.loginBox .logoText {
    color: #6c0824;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}

.loginBox .logomessage {
    color: #999;
    font-size: 14px;
    line-height: 18px;
    width: 225px;
    display: inline-block;
    padding: 10px 0px;
}

.loginBox .loginForm {
    display: inline-block;
    width: 225px;
    padding: 10px 0;
}

.loginBox .loginForm .form-control {
    background-color: transparent;
    height: 34px;
    font-size: 13px;
    line-height: 18px;
    padding: 6px 6px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    border: 2px solid rgb(135, 100, 50);
}

.loginBox .loginForm .form-control:focus {
    background-color: #fff;
    border-color: #5b0010;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
    font-weight: 600;
}

.loginBox .loginForm .form-group {
    position: relative;
    color: #bababa;
}

.loginBox .loginForm .form-group .iconinput {
    font-size: 16px;
    position: absolute;
    display: inline-block;
    line-height: 34px;
    top: 0;
    right: 12px;
}

.loginBox .loginForm .form-group.addonleft .form-control {
    padding-left: 40px;
}

.loginBox .loginForm .form-group.addonleft .iconinput {
    right: auto;
    left: 12px;
}

.loginBox .loginForm .form-group.addonright .form-control {
    padding-right: 6px;
}

.loginBox .loginForm .form-group .showPassLink {
    position: absolute;
    display: inline-block;
    line-height: 34px;
    padding: 0 10px;
    right: 9px;
    top: 0px;
    z-index: 1;
    color: #6c0824;
    cursor: pointer;
    font-size: 13px;
}

.loginBox .loginForm .form-group.addonright.showPass .form-control {
    padding-right: 80px;
}

.loginBox .loginForm .form-group.addonleft.showPass .form-control {
    padding-left: 80px;
}

.loginBox .loginForm .btn-fr-primary {
    font-size: 16px;
    line-height: 18px;
    height: 34px;
    text-align: center;
    color: #fff;
    background-color: #876432;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.loginBox .loginForm .btn-fr-primary:focus, .loginBox .loginForm .btn-fr-primary:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #6c0824;
}

.loginBox .loginForm .btn-fr-primary:disabled {
    background-color: #333;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
}

.loginBox .loginHelp-Text {
    text-align: center;
    font-size: 13px;
    color: #333;
    padding-top: 0px;
    padding-right: 0px;
}

.loginBox .loginHelp-Text a {
  display: inline-block;
color: rgba(0, 78, 153, 1);
text-decoration: none;
font-weight: bold;
}

.loginBox .loginHelp-Text a:focus, .loginBox .loginHelp-Text a:hover {
    color: #6c0824;
}

.loginBox .loginHelp-Text a i, .loginBox .loginHelp-Text a span {
    display: inline-block;
    vertical-align: middle;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
