.container-fluid{
    background-color: black;
}

.infinity-image-container{
    background: url('../images/TIRUVALLUR-DISTRICT.png') center no-repeat;
    background-size: cover;
    opacity: 0.6;
    /* height: 100vh; */
}

.infinity-form-container{
    background: #31335d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.infinity-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.infinity-form h4 {
    font-weight: bold;
    color: white;
}

.infinity-form .form-input {
    position: relative;
}

.infinity-form .form-input input {
    width: 100%;
    margin-bottom: 20px;
    height: 40px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: white;
    padding-left: 45px;
}
.infinity-form .form-input select {
    width: 100%;
    margin-bottom: 20px;
    height: 40px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: white;
    padding-left: 45px;
}

.infinity-form .form-input span {
    position: absolute;
    top: 8px;
    padding-left: 20px;
    color: #777;
}

.infinity-form .form-input input:focus,
.infinity-form .form-input input:valid {
    border: 2px solid #4285f4;   
}

.infinity-form input[type="checkbox"]:not(:checked) + label:before{
    background: transparent;
    border:2px solid white;
    width: 15px;
    height: 15px;
}

.infinity-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #4285f4 !important;
  border:0px;
}

.infinity-form button[type="submit"] {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: linear-gradient(45deg, #4285f4, #709de8);   /*Button Color*/
    color: #fff;
    font-weight: bold;
    transition: 0.5s;
}

.infinity-form button[type="submit"]:hover {
    background: linear-gradient(45deg, #709de8, #4285f4);   /*Button color when hover*/
}

.forget-link , .login-link , .register-link {
    color: #fff;
    font-weight: bold;
}

.forget-link:hover , .login-link:hover , .register-link:hover {
    color: #4285f4;
    text-decoration: none;
}

.infinity-form .btn-social {
    color: white;
    border: 0;
    display: inline-block;
    margin: 0px;
    margin-right: 10px;
    font-weight: bold;
    padding: 0px;
    margin-bottom: 10px;
}

.infinity-form .btn-social:hover {
    text-decoration: underline;
}

.infinity-form .btn-facebook:hover {
    color: hsla(221, 40%, 40%, 1);
}

.infinity-form .btn-google:hover {
    color: hsla(4, 59%, 47%, 1);
}

.infinity-form .btn-twitter:hover {
    color: hsla(195, 78%, 54%, 1);
}
 
/* HTML: <div class="loader"></div> */
.loader-container {
   
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: Adds a semi-transparent background */
    z-index: 9999; /* Ensure it appears on top of other content */
    display: none;
  }
  
  .loader {
   
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #25b09b;
    animation: l15 1s infinite linear;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
  }
  .loader::after {
    margin: 8px;
    animation-duration: 3s;
  }
  @keyframes l15{ 
    100%{transform: rotate(1turn)}
  }

  #toggle-password {
    cursor: pointer;
    position: absolute;
    right: 10px;
  }
  #toggle-confirm-password {
    cursor: pointer;
    position: absolute;
    right: 10px;
  }

  /* body {
        font-family: Arial, sans-serif;
        margin: 20px;
        background-color: #080a31;
      } */
      table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
      }
      table,
      th,
      td {
        border: 1px solid #ffffff;
      }
      th,
      td {
        padding: 8px 12px;
        vertical-align: middle;
      }
      td {
        color: #fff;
      }
      th {
        background-color: #f2f2f2;
        text-align: center;
      }
      td:first-child {
        font-weight: bold;
        width: 10.5%;
      }
      td:nth-child(2) {
        font-weight: bold;
        width: 10.5%;
      }
      td:nth-child(3) {
        width: 7.5%;
        text-align: center;
      }

      td:nth-child(4) {
        width: 7.5%;
        text-align: center;
      }

      /* Center align all checkboxes */
      /* Center align and enlarge checkboxes */
      td input[type="checkbox"] {
        display: block;
        margin: auto;
        transform: scale(1.5); /* Increase size (1 = normal, 1.5 = 150%) */
        cursor: pointer;
        accent-color: green; /* Makes the checkbox green when checked */
      }

      input[type="text"] {
        width: 90%;
        padding: 4px;
        border: 1px solid #999;
        border-radius: 4px;
      }
      /* Continue Registration button styling */
      .btn-container {
        text-align: center;
        margin-top: 20px;
      }
      .continue-btn {
        background-color: #007bff;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
      }
      .continue-btn:hover {
        background-color: #0056b3;
      }
 

  


   
  