@media only screen and (max-width: 1200px) {
    .h4{
        font-size: 1.25rem;
    }
    .h5{
        font-size: 1rem;
    }
    .h6{
        font-size: .95rem;
    }
}
@media only screen and (max-width: 576px) {
    .login-div{
        width: 100%;
    }
    .emblem{
        display: none;
    }
    .trc{
        display: none;
    }
    .bg-border::before,
    .bg-border::after{
        background: none;
        content: '';
        position: absolute;
        z-index: 1;
        width: 40px;
        height: 252px;
        top: 0;
    }
}
@media only screen and (min-width: 575px) {
    .login-div{
        width: 50%;
    }
}
/* Primary: #5C0C19, rgb(92,12,25) */
/* Accent: #F8891E rgb(248,137,30)*/
:root{
    --main-color: #5C0C19;
    --accent-color: #F8891E;
}
.login-card{
    z-index: 2;
    min-width: 100%;
    background-color: #fff;
}
.login-card .header{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 100%;
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    font-weight: bold;
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0
}
.login-card article{
    display: block;
}
input:-webkit-autofill {
    background-color: rgb(242, 243, 247) !important;
    -webkit-box-shadow: 0 0 0 50px rgb(242, 243, 247) inset;
}
.border-none{border-radius: 0; border:none;}
.main-title{
    text-shadow: 0 2px 4px #9f9f9f;
}
.bg-border{
    position: relative;
    /* z-index: 1; */
    /* background-color: #fff; */
}
.bg-border::before{
    background-position: left top;
    left: -40px;
}
.bg-border::after{
    background-position: right top;
    right: -40px;
    transform: scale(-1,1);
}
.bg-border:before{
    content: '';
    position: absolute;
    background: url('../images/shadow_bg.png');
    z-index: 1;
    width: 40px;
    height: 252px;
    top: 0;
}
.bg-border:after{
    content: '';
    position: absolute;
    background: url('../images/shadow_bg.png');
    z-index: 1;
    width: 40px;
    height: 252px;
    top: 0;
}
.trc img{
    width: 80px;
    height: auto;
    object-fit: cover;
    width: auto;
    overflow: hidden;
}
.emblem img{
    width: 100px;
    height: 100px;
}

.login-div .h5{
    font-size: 17px;
    word-spacing: 3px;
    line-height: 95%;
    font-weight: bold;
}
.login-div .h6{
    font-size: 14px;
    word-spacing: 3px;
    line-height: 95%;
    font-weight: bold;
}
.login-div .title{
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.fields{
    padding: 35px 5px 5px 5px;
}
.fields .icon{
    color: #ccc;
    line-height: 22px;
    margin-right: .5rem;
    /* z-index: 20; */
}
.fields input{
    border: none;
    outline: none;
    background: none;
    font-size: 13px;
    color: #555;
    padding: 8px;
    width: 100%;
    caret-color: #F1980B;
}
.email, .password{
    margin-bottom: 15px;
    border-radius: 12px;
    padding: 5px 12px;
    background: rgb(242, 243, 247);
}
.signin-button{
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: #24cfaa;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    background-color: var(--accent-color);
    transition: 0.5s;
    padding: .475rem 1.55rem;
    font-size: .875rem;
    line-height: 1.5;
    width: 100%;
    border-radius: .25rem;
}
.signin-button:hover{
    background: #eca22b;
}
.signin-button:active{
    background: #e19215;
}
.link{
    padding-top: 20px;
    text-align: center;
}
.link a{
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
}

.footer{
    text-align: center;
    font-size: 11px;
}
