@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
body{
    background: url('../images/login-background-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 500px; */
    font-family: 'Open Sans', sans-serif;
}

.welcome-text h2 {
    color: #D1D4DD;
    border-bottom: 1px solid #D1D4DD;
    margin: 0;
    padding-bottom: 10px;
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 10px;
    /* font-family: var(--regular); */
    font-size: 1.375rem;
}
.form-control{
    border-radius: 0px !important;
}
.welcome-text p{
    color: #D1D4DD;
}
.bg-form{
    background-color: rgba(0,0,0,.74);
}
.img-logo{
    max-height: 60px;
}
.btn-login{
    background: #172A54;
    color: #fff;
    border-radius: 0px !important;
}
.btn-login:hover{
    background-color: #9e9e9e;
    color: #fff;
}
.btn-default_01{
    padding: 8px 20px;    
    color: rgba(0,0,0,.87);
}
a:hover{
    text-decoration: none;
    color: #fff;
}
.app-footer {
    background-color: #172a54;
    border-top: 4px solid #8bc0c6;
    padding: 10px;
}
.app-footer .footer-font-1 {
    color: #8bc0c6;
    text-shadow: 1px 1px 1px rgba(255,255,255,0);
}
.gap-40{gap: 40px;}
.un-order-list{
    list-style: none;
    column-gap: 30px;
}

.un-order-list li a{
    font-size: .75rem;
    font-weight: 400;
    color: #8bc0c6;
}
.strong{
    font-size: .875rem;
    font-weight: 600;
}
.text-compl{
    color: #8bc0c6;
}
.br-10{
    border-radius: 10px;
}
@media screen and (max-width:991px) {
    body{
        background: #404040;
    }
    .bg-mobile{
        background: url('../images/login-background-image.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
    }
    .content-heading{
        display: none;
    }
    .bg-form{
        background: transparent;
        padding: 0px !important;
    padding-bottom: 10px !important;
    }
    .flex-container{
        padding: 0px !important;
    }
    .btn-default_01{
        text-align: left;
        border-top: 1px solid #fff;;
        border-bottom: 1px solid #fff;
        padding: 5px 15px !important;
        color: #fff;
        font-size: 18px;
    }
    .mobile-content-bg{
        background: none !important;
        padding: 0px !important;
    }
    .flex-mobile{
        flex-direction: column;
    }
    .gap-40{
        column-gap: 80px;
    }
    .un-order-list{
        margin-top: 50px;
    }
}

.input-001{
    height: 40px;
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    padding: 13px;
}
.fs-30{
    font-size: 22px;
}
.h-150{
    height: 100vh;
}
.img-nav {
    animation: crescendo 1.5s alternate infinite ease-in;
}
@keyframes crescendo {
0% {
    transform: scale(.8);
}
100% {
    transform: scale(1.3);
}
}