*{
    padding: 0;
    margin: 0;
}
body{
    box-sizing: border-box;
}
.brand-logo {
    width: 260px;
    /*height: 70px;*/
}
.logo {
    position: relative;
    margin: 10px 50px;
}
.logo:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #d4d4d4;
    bottom: 0;
    left: 0;
}
.form-box,.quick-link{
    margin: 40px 50px 0 50px;
}
.form-container{
    height: 620px;
}
#login{
    display: none;
}
h1.main-head {
    color: #d9513f;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    margin-bottom: 20px;
}
p {
    margin: 15px 0 10px;
    font-size: 17px;
    text-align: justify;
}
.register-p{
    margin: 20px 0;
}

.bg-text span {
    background: #b9b9b9;
    padding: 8px 25px;
    font-weight: bold;
}
.trust-img {
    width: 130px;
}
.trust-mark-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-control{
    border-radius: 0;
    font-size: 14px;
    height: 40px;
}
.login-p{
    margin: 20px 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.menu{
    display: flex;
}
.menu span {
    font-size: 18px;
    color: #585858;
    font-weight: 400;
    margin-right: 10px;
    cursor: pointer;
    padding: 8px 25px;
}
.btn {
    background: #d9513f;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0;
    margin-bottom: 15px;
    width: 100%;
}
label.checkbox-inline {
    font-size: 12px;
}
a.link.forgot-link {
    color: #000;
}
.quick-link{
    position: relative;
    padding-top: 30px;
}
.quick-link .link{
    font-weight: 600;
}
.quick-link .link:hover{
    text-decoration: none;
}
.quick-link:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #d4d4d4;
    top: 0;
    left: 0;
}

.trust-mark-box{
    position: relative;
}
.trust-mark-box:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #d4d4d4;
    z-index: -1;
}
section.copyright {
    padding: 25px 0;
}
section.copyright {
    padding: 25px 50px;
    background: #e4e4e4;
}
p.copyright-text.mb-0 {
    font-size: 12px;
}
.password-box{
    position: relative;
}
.show-icon,.hide-icon{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.hide-icon{
    display: none;
}

/* responsive */
@media (max-width: 768px) {
    h1.main-head {
        font-size: 24px;
        text-align: center;
    }
    .trust-img {
        margin: 30px 0;
    }
    .quick-link{
        text-align: center;
    }
}

@media(max-width: 1200px){
    
    .form-box,.quick-link{
        margin: 5px;
    }
}