/*=========Google Fonts=======*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/*===========Global Styles*/
*{
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue: #2e2185;
    --white: #fff;
    --gray: #f5f5f5;
    --black1: #222;
    --black2: #999;
    --orange: orange;
    --golden: rgb(255, 183, 0);
}

body{
    min-height: 100vh;
    overflow-x: hidden;
}

.container{
    position: relative;
    width: 100%;
}
/*===============================Login Form========================================*/
.form-container{
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  /*padding-bottom: 60px;
  background: #ff0505;*/
  background-image: url("assets/loginbg.jpg"); /* The image used */
  background-color: blue; /* Used if the image is unavailable */
  width: 100%;
  height: auto; /* You must set a specified height */
  background-position: center;/*50% 50%;  Center the image */
  object-fit: cover;
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;/*100%;*/
}

.form-container form{
   border: 2px solid green;
   padding: 20px;
   border-radius: 5px;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
   background: #0748d398;
   text-align: center;
   width: 500px;
}

.form-container form:hover{
    border: 2px solid rgb(255, 183, 0);
}

.form-container form h4{
   font-size: 20px;
   text-transform: uppercase;
   margin-bottom: 8px;
   color: #ffd900;
}

.form-container form input{
   width: 100%;
   padding: 10px 15px;
   font-size: 17px;
   margin: 5px 0;
   background: #eee;
}

select {
   width: 100%;
   padding: 10px 15px;
   font-size: 17px;
   margin: 8px 0;
   background: #eee;
}

.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    font-size: 16px;
 }
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 42px;
    background: var(--blue);
}

.form-container form img {
    border: 1px solid #032ff3;
    border-radius: 50%;
    padding: 1px;
   /* max-width: 50%;
    height: auto;*/
    width: 150px;
    height: auto;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  .form-container form img:hover {
    box-shadow: 0 0 2px 1px rgb(255, 183, 0);
  }

  .form-container form .form-btn{
      background: green;
     color: #e9b10a;
     text-transform: capitalize;
     font-size: 20px;
     cursor: pointer;
  }

  .form-container form .form-btn:hover{
    background: #e9b10a;
    color: green;
    border-color: red;
  }

  .form-container form p{
    margin-top: 10px;
    font-size: 19px;
    font-weight: bold;
    color:#000;
  }

  .form-container form p a{
    color: rgb(255, 0, 0);
    text-decoration: underline;
    font-weight: 400;
    font-style: italic;
  }

  #dataTable {
    display: table !important;
    visibility: visible !important;
}

/*=============================== Footer========================================*/

footer{
    background-color: #000;
}

.footernav{
    width: 100%;
    padding: 20px;
}

.footerbottom{
    text-align: center;
}

.footerbottom p{
    color: #ffffff;
}

footer a {
            color: var(--golden); 
            text-decoration: none; 
        }

footer a:hover {
    text-decoration: underline; 
}

.love{
    color: red;
    font-size: 500;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0px 5px;
}

/*=============================== Status styling ========================================*/
.status-active {
    color: green;
    font-weight: bold;
}
.status-inactive {
    color: red;
    font-weight: bold;
}
