/**
 * @author : Inteliworx Technologies
 *
 * Custom css style sheets 
 */


 /**
  * Login & Registartion
  */
 .bg-login-image 
 {
    background: url(../../images/new/back-02.jpeg);
    background-position: center;
    background-size: cover;
}

.bg-registration-image
{
   background: url(../../images/new/back-11.png);
   background-position: center;
   background-size: cover;
}

.form-control-login 
{
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 1.5rem 1rem;
}

.o-hidden 
{
    overflow: hidden !important;
}

.shadow-lg 
{
    -webkit-box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}

.bg-gradient-primary 
{
    background-color: #046600;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #058201), to(#046600));
    background-image: linear-gradient(180deg, #058201 10%, #046600 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/**
 * Dashboard
 */
 .green-bg 
 {
    background: #28a745;
 }

/**
 * Screen Resolution
 */
@media (min-width: 992px) 
{
    .d-lg-block {
        display: block !important;
      }
}