
/* ********************************************************************************************
    Reset
*********************************************************************************************** */

html,
body {
    -webkit-font-smoothing: antialiased;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
}
a{
    color: #d8273b;
    text-decoration: none !important;    
}
a:hover{
    color: #013c80;
}
img {
    max-width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight: 700;
}
.h1, h1{
    font-size: 3.125rem;
}
.h2, h2{
    font-size: 1.875rem;
}
.h3, h3{
    font-size: 1.25rem;
}
.h4, h4{
    font-size: 1.125rem;
}
.h5, h5{
    font-size: 1rem;
}
.h6, h6{
    font-size: 0.875rem;
}

/* ********************************************************************************************
    Colors
*********************************************************************************************** */

.text-primary{
    color: #003879 !important;
}


/* ********************************************************************************************
    Buttons
*********************************************************************************************** */

.btn{
    outline: none !important;
    box-shadow: none !important;
    border-radius: 8px;
    padding: 1.375rem 2.188rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}
.btn .icon{
    float: right;
    margin-top: 5px;
}
.btn-primary-theme{
    background-color: #d8273b;
    color: #FFF;
    box-shadow: 0px 21px 95px 5px rgb(216 39 59 / 0.61) !important;
    max-width: 280px;
}
.btn-primary-theme:hover{
    background-color: #c51a2e;
    color: #FFF;
}

/* ********************************************************************************************
    Login Content
*********************************************************************************************** */

.content{
    min-height: 100vh;
    overflow: hidden;
}
.banner{
    position: relative;
}
.banner:before {
    content: "";
    width: 0;
    height: 0;
    opacity: .20;
    border-left: 532px solid transparent;
    /* border-right: 532px solid transparent; */
    border-top: 1013px solid #3f91cd;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transform: rotate(8.5deg) translate(-37%, -50%);
}
.banner:after{
    content: "";
    width: 0;
    height: 0;
    opacity: .50;
    border-left: 528px solid transparent;
    border-right: 528px solid transparent;
    border-bottom: 1070px solid #bb011d;
    position: absolute;
    bottom: 0;
    z-index: 1;
    right: -528px;
}
.banner img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    /*width: 50%;*/
}
.login-content{
    height: 100%;
    position: relative;
    z-index: 1;
}
.login-content:before{
    content: "";
    background: url(../../Images/orion/shap-white.png);
    position: absolute;
    top: -1px;
    left: -378px;
    z-index: -1;
    background-size: cover;
    height: 1085px;
    width: 1160px;
}
.login-content .card-body:after {
    content: "";
    width: 0;
    height: 0;
    opacity: .10;
    border-bottom: 1042px solid #889ab6;
    border-left: 1080px solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.login-content ul{
    padding-left: 1.125rem;
}
.login-content ul li{
    margin: 1.25rem 0px;
}

/* ********************************************************************************************
    Animation
*********************************************************************************************** */

a,
.btne{
    -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, opacity 0.3s ease-in-out, border 0.3s ease-in-out, font-weight 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out, opacity 0.3s ease-in-out, border 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}