/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
:root{
  --50: #1F2041;
  --30: #4B3F72;
  --10: #417B5A;
  --51: #D0CEBA;
  --52: #E9D2C0;
  --white: #fff;
  --black: #000;
}
::-webkit-scrollbar {
  width: 0px;
}
.bxs-badge-check {
  color: #008000;
}

.bxs-trash-alt {
  color: #ff0000;
}
.bxs-send{
  color: var(--black)!important;
}
.bx-right-arrow-circle{
  color: var(--black)!important;
  font-size: 25px!important;
  font-weight: bolder!important;
}
.bxs-message-square-edit{
  color: green;
}
.hide{
  display: none;
  
}
.overflow-x-scroll{
  overflow-x: scroll;
}
.notincomputer{
  display: none;
}
.oncomputerscreen{
  display: none;
}
/* 1. Sliderbar */

.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: var(--50);
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close{
  transform: translateX(-100%);
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.logo-details{
  gap: 5px  ;
  text-align: center;
}
.logo-details img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 10px;
}

.sidebar .logo-details .logo_name{
  font-size: 20px;
  color: var(--51);
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  margin-right: 2px;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: scroll;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: var(--30);
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: var(--52);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 18px;
  font-weight: 400;
  color: var(--52);
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: var(--30);
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
  margin-top: 5px;
}
.sidebar .nav-links li .sub-menu a{
  color: var(--white);
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 56%;
}
.home-section{
  position: relative;
  background: var(--white);
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
  padding: 12px;
}

.sidebar.close ~ .home-section{
  left: 0px;
  width: 100%;
}
.home-content{
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 40px;
  justify-content: center;
  flex-wrap: wrap;
  width: 5%;
  height: auto;
  color: var(--30);
}
/* .oncreenmainonscreen {
  cursor: pointer;
  display: none;
  align-items: center;
  text-align: center;
  font-size: 40px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  color: var(--white);
} */
.oncreenmainonscreenmain {
  cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    background-color: var(--50);
    padding: 5px;
    border-radius: 20px;
    box-shadow: 4px 4px 20px #A9A9A9;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
  /* color: #11101d; */
  font-size: 35px;
}
.home-section .home-content .bx-menu{
  cursor: pointer;
  margin-right: 10px;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}
/* Drop Down */
.datahead{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4px;
  height: 40px;
  background-color: #007bff;
}
.dropdown {
  position: relative;
  margin-right: 40px; 
  display: inline-block;
  width: auto;
  height: 100%;
  align-items: center;
  text-align: center;
  font-size: 20px!important;
}
.userdata{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40px;  
  gap: 10px;
}
.chileda{
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
}
/* The image that triggers the dropdown */
.dropdown img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: var(--30);
  color: var(--white) ;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: var(--white);
  padding: 1px;
  text-decoration: none;
  font-size: 18px!important;
  display: block;
  transition: 0.3s ease-in-out;
  opacity: 0.6;
}
.dropdown-content a:hover{
  opacity: 1;
}

/* Hover effect for links */
.dropdown-content a:hover {
  color: var(--white);
}

/* Show the dropdown menu when hovering over the image */
.dropdown:hover .dropdown-content {
  display: block;
}
/* 2. Card View */

.page-view-card{
  margin: 20px;
  background-color: var(--white);
  width: 98%;
  height: 88%;
  z-index: 999;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 4px 4px 20px #A9A9A9;  
  overflow-y: scroll;
  overflow-x: hidden; 
}

/* 3. Multi Card  */

.multi-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
  max-width: 100%;
  height: auto;
  justify-content: center;
  align-items: start;
  padding: 10px;
}
.multi-card-two-card{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
  max-width: 100%;
  height: auto;
  justify-content: center;
  align-items: start;
  padding: 10px;
}
.multi-card-a {
  box-shadow: 4px 4px 20px #A9A9A9;
  width: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  max-height: 400px;
  overflow: scroll;
}
.multi-card-a-two-card{
  box-shadow: 4px 4px 20px #A9A9A9;
  width: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  max-height: 600px;
  overflow: scroll;
}
.multi-card-b{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.multi-card-b i {
  font-size: 60px;
  color: #2450cbaa;
}
.multi-card-c{
  display: block;
  justify-content: space-around;
  align-items:center    ;
  padding: 0;
  margin: 0;
  box-sizing: 0;
}
.multi-card-c h1{
  font-size: 35px;
  font-weight: bolder;
  color: var(--black);
}
.multi-card-c h6{
  transform: translateY(-10px);
}
.multi-card-d {
  width: 100%;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  margin-top: 5px;
}
.cssbuttons-io-button {
  background: var(--30);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--10);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  width: 100%;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--51);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* 4. Content Table */

.scroll{
  overflow: scroll;
  width: 100%;
  height: auto;
}
.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  width: 100%;
  border-radius: 5px 5px 0 0;
  overflow-x: scroll!important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
  background-color: #009879;
  color: var(--white);
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.content-table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}
/* Table Head Color Management */

.red-background thead tr{
  background-color: #ff0000;
}
.red-background tbody tr:last-of-type{
  border-bottom: #ff0000 solid 2px;
}

/* 5. black-card-btn-top-buttom */

.black-card-btn-top-buttom{
  width: 96%;
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  box-sizing: unset;
  border: none;
  font-size: 18px;
  font-weight: bolder;
  background-color: var(--50);
  color: var(--white);
  transition: .5s ease-in-out;
  cursor: pointer;
}
.black-card-btn-top-buttom:hover{
  background-color: var(--10);
}
.black-card-btn-top-buttom-icon{
  font-size: 20px;
}

/* 6. Flotting Form */

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: var(--white);
  border: 1px solid #333;
}
.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #00bfff;
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #00bfff;
}

.message,
.signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.signin a {
  color: #00bfff;
}

.flex {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #333;
  color: var(--white);
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input+span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
  top: 12.5px;
  font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
  color: #00bfff;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: var(--white);
  font-size: 16px;
  transform: .3s ease;
  background-color: #00bfff;
  transition: .3s ease !important;
  cursor: pointer;
}
.submit:hover {
  background-color: #00bfff96;
}

/* 7. Toogle Switch */

/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  border: 1px solid #adb5bd;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 20px;
  left: 0.27em;
  bottom: 0.25em;
  background-color: #adb5bd;
  transition: .4s;
}

input:checked+.slider {
  background-color: #007bff;
  border: 1px solid #007bff;
}

input:focus+.slider {
  box-shadow: 0 0 1px #007bff;
}

input:checked+.slider:before {
  transform: translateX(1.4em);
  background-color: var(--white);
}

/* 8. Choose File */

#custom-button {
  background-color: #4CAF50;
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}

#custom-button:hover {
  background-color: #3e8e41;
}

#file-name {
  margin-left: 10px;
}

/* Hide And Show Data */

.hidekey1:checked  .hide1{
  display: block;
}
@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* 9. ID Card's */

.MainActivity-IDCard{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100vw;
  padding: 10px;
  gap: 5px;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.multi-card-id-card-a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-evenly;
  padding: 20px;
  width: 100%;
  gap: 10px;
}

.main-id-card {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  max-width: 350px;
  text-align: center;
  height: auto;
  justify-content: start;
  align-items: center;
  padding: 10px;
}

.id-card {
  width: 350px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px;
}

.id-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;
  transition: transform 0.4s ease;
}

.name {
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px 0 10px;
  color: var(--black);
  transition: color 0.4s ease;
}

.id-card:hover .name {
  color: #1e90ff;
}

.job-title {
  font-size: 1.1em;
  color: #1e90ff;
  margin: 5px 0 15px;
}

.phone,
.employee-id {
  font-size: 1em;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.id-card:hover .phone,
.id-card:hover .employee-id {
  color: #1e90ff;
}

.qr-code {
  width: 110px;
  height: 110px;
  margin: 10px auto;
  transition: transform 0.4s ease;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.id-card:hover .qr-code {
  transform: scale(1.1);
}

.top-bar {
  height: 5px;
  width: 100%;
  background-color: #1e90ff;
  position: absolute;
  top: 0;
  left: 0;
}

.icon-bar {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Icon Button */

.icon-btn {
  background-color: #1e90ff;
  border: none;
  color: white;
  border-radius: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.icon-btn i {
  font-size: 30px;
  margin: 5px;
}

.icon-btn:hover {
  background-color: #0056b3;
}

/* 10 .Profile Card */

.page-view-card-extra{
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.profile-container {
  width: 100%;
  max-width: 800px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  /* Increased padding */
  box-sizing: border-box;
  position: relative;
  transition: box-shadow 0.3s ease;
  text-align: center;
  margin-top: 20px;
}

.profile-container:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1e90ff;
  margin: 0 auto;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  /* Added margin-bottom */
}

.profile-picture:hover {
  transform: scale(1.1);
}

.name {
  font-size: 2em;
  color: #333;
  margin: 10px 0;
}

.position {
  font-size: 1.2em;
  color: #777;
  margin-bottom: 30px;
  /* Increased margin-bottom */
}

.extra1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.details {
  text-align: left;
  margin: 0 50px;
  display: inline-block;
  max-width: 500px;
  margin-bottom: 30px;
  /* Added margin-bottom */
}

.detail-item {
  font-size: 1em;
  color: #333;
  margin: 10px 0;
}

.detail-item a {
  color: #1e90ff;
  text-decoration: none;
}

.qr-code {
  margin-bottom: 30px;
  margin-left: 50px;
  /* Added margin-bottom */
  width: 150px;
  height: 150px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  display: inline-block;
}

.qr-code img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.qr-code:hover img {
  transform: scale(1.1);
}

.button-container {
  margin-top: 20px;
}

.change-password-btn {
  background-color: #1e90ff;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.change-password-btn:hover {
  background-color: #0056b3;
}
/* 11. Login Page */

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.login-form {
  width: 350px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  
}
.login-form form{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
  color: var(--white)fff;
  /* padding: 5px; */
  overflow: hidden;
}
.login-form form .logo {
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.login-form form .logo h1{
  margin-top: 20px;
  margin-bottom: 20px;
}

.login-form form .logo img {
  width: 150px;
    height: 150px;
    /* border: #1e90ff solid 4px; */
    border-radius: 100%;
    display: block;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.loginbtncss{
  width: 100%;
  height: 50px;
  border: none;
  text-align: center;
  background-color: #f6f5f8;
  color: #333;
  border-radius: 50px;
  margin-top: 30px;
  font-weight: bolder;
  font-size: 20px;
  transition: 0.5s;
  cursor: pointer;
}
.loginbtncss i{
  font-size: 20px;
  font-weight: bolder;

}
.loginbtncss:hover{
  color: #fff;
  background-color: #333;
  transform: translateY(-20px);
}
/* 13. Login Input[TEXT] */
.input-text{
  width: 100%;
  height: auto; 
  display: flex;
  justify-content: left;
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
  color: var(--white);
  flex-wrap: wrap;
}
.fp-login{
  width: 100%;
  height: auto;
  padding: 2px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: left;
  text-decoration: none;
  outline: none;
  color: var(--white);
}
.fp-login-a{
  color: var(--white);
  font-weight: bold;
}
.input-container {
  position: relative;
  margin: 15px auto;
  width: 100%;
}

.input-container input[type="text"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  color: var(--white);
  background-color: transparent;
  outline: none;
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  transition: all 0.3s ease;
  pointer-events: none;
}



.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
  transform: scaleX(1);
}

/* 13. Login Input[PASSWORD] */

.input-container {
  position: relative;
  margin: 15px auto;
  width: 100%;
}

.input-container input[type="password"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
  color: var(--white);
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container input[type="password"]:focus~.label,
.input-container input[type="password"]:valid~.label {
  top: -20px;
  font-size: 16px;
  color: var(--white);
}

.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="password"]:focus~.underline,
.input-container input[type="password"]:valid~.underline {
  transform: scaleX(1);
}
/* 14. Animated BTN */

.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  margin-top: 10px;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #234567;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}
/* 15. Plan Details */

.container {
  width: 100%;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  overflow: scroll;
}

.label {
  font-weight: bold;
  margin-bottom: 10px;
}

.value {
  margin-bottom: 20px;
}

.expiry-date {
  color: #666;
  font-size: 18px;
}

.days-remaining {
  color: #999;
  font-size: 14px;
}

.company-info {
  margin-bottom: 20px;
}

.plantable {
  border-collapse: collapse;
  width: auto;
}

.plantableth,
.plantabletd {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.plantableth {
  background-color: #f0f0f0;
}
/* 16. Document View Page */

.page-view-card-doc{
  display: block;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.docvieddownbtns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  background-color: #0056b3;
}
.btnicons{
  background-color: #0056b3;
  width: 100%;
  margin-bottom: 2px;
}
.iframepdfview {
  width: 100%;
  height: 90%;
}
/* Under Area */
.fileviewicon{
  background-color: transparent;
  color: var(--white);
  outline: none;
  border: none;
  font-size: 21px;
  padding: 5px;
  border-radius: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  cursor: pointer;
  margin-right: 2px;
}
.fileviewicon i {
  margin: 5px;
}
.otherfileviewbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.fileviewbtnothe {
  width: 100%;
  height: auto;
}
/* Section Div */
.fileviewbtnothe{
  background-color: transparent;
    color: var(--white);
    outline: none;
    border: none;
    font-size: 21px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.fileviewdivfullscreen {
  width: 100vw;
  height: 100%;
  z-index: 999;
  position: fixed;
  background-color: #000000a3;
  color: var(--white);
  padding: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  transform: translateY(-50px);
    overflow: hidden;
    transform: 0.5s;
}



/* 17. Go Back Button */

.docviewbtn {
  display: inline-block;
  border-radius: 4px;
  background-color: #3d405b;
  border: none;
  color: var(--white)FFF;
  text-align: center;
  font-size: 17px;
  padding: 2px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  height: 40px;
  width: 150px;
}

.docviewbtn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.docviewbtn span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

.docviewbtn:hover span {
  padding-right: 15px;
}

.docviewbtn:hover span:after {
  opacity: 1;
  right: 0;
}
/* 18. Download Btn */
.downbtndiv{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.button {
  position: relative;
  width: auto;
  height: 40px;
  cursor: pointer;
  width: 150px;
  display: flex;
  align-items: center;
  border: 1px solid #17795E;
  background-color: #209978;
  overflow: hidden;
  border-radius: 5px;
}
.button,
.button__icon,
.button__text {
  transition: all 0.3s;
}

.button .button__text {
  transform: translateX(20px);
  color: var(--white);
  font-weight: 600;
  font-size: medium;
}

.button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #17795E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button .svg {
  width: 20px;
  fill: var(--white);
}

.button:hover {
  background: #17795E;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button:active .button__icon {
  background-color: #146c54;
}

.button:active {
  border: 1px solid #146c54;
}

/* 19. Select Bar */

.select-bar {
  position: relative;
  display: inline-block;
  width: 200px;
}

.select-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.select-bar:hover::before {
  background-color: #ccc;
  transform: scale(1.1);
}

.select-bar select {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.select-bar select:focus {
  outline: none;
}
/* 20. Tool Tip */

/* From Uiverse.io by SmookyDev */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: "Arial", sans-serif;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: var(--white);
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #4caf50;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}

/* 21. Uplode File */
.drop-container {
  background-color: #fff;
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  padding: 10px;
  margin-top: 2.1875rem;
  border-radius: 10px;
  border: 2px dashed rgb(171, 202, 255);
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  border-color: rgba(17, 17, 17, 0.616);
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

#file-input {
  width: 350px;
  /* max-width: 100%; */
  color: #444;
  padding: 2px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(8, 8, 8, 0.288);
}

#file-input::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

#file-input::file-selector-button:hover {
  background: #0d45a5;
}
/* 22. Radio Button */

/* .radia-insertform{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.radio-s{
  display: flex;
  width: auto;
  height: auto;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.radio-sub{
  margin: 5px;
} */
/* 23. Input Css */

.wave-group {
  position: relative;
}

.wave-group .inputc {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #515151;
  background: transparent;
}

.wave-group .inputc:focus {
  outline: none;
} 

.wave-group .label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  display: flex;
}

.wave-group .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * .05s);
}

.wave-group .inputc:focus~label .label-char,
.wave-group .inputc:valid~label .label-char {
  transform: translateY(-20px);
  font-size: 14px;
  color: #5264AE;
}

.wave-group .bar {
  position: relative;
  display: block;
  width: 100%!important;
}

.wave-group .bar:before,
.wave-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.wave-group .bar:before {
  left: 50%;
}

.wave-group .bar:after {
  right: 50%;
}

.wave-group .inputc:focus~.bar:before,
.wave-group .inputc:focus~.bar:after {
  width: 50%;
}

/* 24. Live Search Table CSS */

.searchInput-container {
  position: relative;
  margin-top: 20px;
  width: 100%;
}

.searchInput-container input[type="text"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
}

.searchInput-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: #ccc;
  transition: all 0.3s ease;
  pointer-events: none;
}

.searchInput-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
  top: -20px;
  font-size: 16px;
  color: #333;
}

.searchInput-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.searchInput-container input[type="text"]:focus~.underline,
.searchInput-container input[type="text"]:valid~.underline {
  transform: scaleX(1);
}
/* 25. Attendence Date Selection */
.setthemonth{
  width: 100%;
  height: auto;
  color: #fff;
}
.setthemonthinputdiv {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #009879;
}
.setthemonthinputdiv-two-text{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #009879;
}
.setdatatomonth-two-card{
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  width: 30%;
  box-sizing: border-box;
  margin-right: 10px;
  margin: 5px 0px 5px 0px;
}

.setthemonthinput {
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  width: 50%;
  box-sizing: border-box;
  margin-right: 10px;
}

.setthemonthinputbtn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

/* 26. Chat App */

.chat-page{
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: left;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  color: var(--black);
  gap: 10px;
  padding: 5px;
  border-radius: 20px;
}
.chat-left{
  display: none;
  justify-content: flex-start;
  align-items: top;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
}
.chat-head-search{
  text-align: left;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100px;
  padding: 5px;
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: sticky;
}
.chat-head-text{
  width: 100%;
  text-align: left;
  font-size: 0.9em;
  margin-left: 20px;
}
.chat-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.chat-search .search{
  width: 100%;
  height: 40px;
  padding: 5px;
  border: none;
  outline: none;
  border-bottom: 2px solid #333;
  font-size: 1em;
  font-weight: bolder;
  text-transform: capitalize;
}
.chat-d{
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: scroll;
  margin-top: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 0px 0px 20px 20px;
}
.list-chat{
  padding: 5px;
  overflow: scroll;
}
.chat-h-btn{
  cursor: pointer;
  outline: none;
  width: 100%;
  background-color: transparent;
  transition: 200ms ease-in-out;
  border: none;
  padding: 2px;
}
.chat-h-btn:hover{
  color: #fff;
  background-color: #333;
}
.chat-h{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}
.chat-h-a{
  display: flex;
  flex-direction: row;
  align-items:start;
  justify-content: center;
}
.chat-pp{
  height: 40px;
  width: 40px;
  border-radius: 100%;
}
.chat-pp img{
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.name-lastchat{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: justify;
  margin-left: 10px;
}
/* Right Side */

.chat-right{
  display: none; /* Flex */
    align-items: top;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* padding: 10px; */
    overflow: hidden;
}
.chat-head-r{
  display: flex;
  flex-wrap: wrap;
  flex-direction:unset;
  align-items: flex-start;
  justify-content: left;
  text-align: left;
  overflow: hidden;
  width: 100%;
  height: 50px;
  padding: 5px;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  left: 0 ;
}
.chat-head-r-pp{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #333;
  margin-left: 10px;
}
.chat-head-r-pp img{
  width: 100%;
  height: auto;
  border-radius: 100%;
}
.back-btn-chat-head {
  display: auto;
  width: 40px;
  height: 40px;
  justify-content: left;
  align-items: flex-start;
  border-radius: 100%;
}
.back-btn-chat-head button{
  background-color: transparent;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  transition: .3s ease-in-out;
  font-weight: 900;
}
.back-btn-chat-head button i{
  margin: 10px;
  font-size: 20px;
}
.back-btn-chat-head button:hover{
  background-color: #333;
  color: #fff;
}
.name-of-chat{
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: auto;
  margin-left: 10px;
  font-size: 20px;
  height: 40px;
}
/* chat-view */
.chat-view {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: 90%;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: scroll;
  padding: 10px;
  gap: 5px;
  max-height: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* .chat-view > .to,
.chat-view > .from {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 10px;
} */

.chat-view > .to {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 10px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}

.chat-view > .from {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 10px;
  text-align: left;
  align-items: flex-end;
  justify-content: flex-end;
}

.chat-view > .to > .to-chat,
.chat-view > .from > .from-chat {
  text-align: left;
  width: 50%;
  max-width: 50%;
  padding: 5px;
  border-radius: 20px;
  padding-left: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  
}
.chat-view>.to>.to-chat{
  background-color: #333;
  color: #fff;
  font-weight: 500;
}
.chat-view>.from>.from-chat{
  background-color: #e8e2e2;
  color: #000;
  font-weight: 500;
}
/* Send Message */

/* .chat-send-area{
  display: grid;
  grid-template-rows: repeat(2,1fr);
  align-items: flex-end;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 5px;
}
.send-msg{
  border: 2px solid #333;
  outline: none;
  padding: 5px;
  align-items: center;
  text-align: left;
  height: 40px;
  width: 80%;
  font-size: 15px;
  font-weight: bolder;
  text-transform: capitalize;
}
.submit-msg{
width: 18%;
padding: 5px;
font-weight: bolder;
height: 40px;
background-color: #333;
color: #fff;
outline: none;
border: none;
transition: .5s ease-in-out;
cursor: pointer;
}
.submit-msg i{
  font-size: 20px;
} */
 
/* Message Box */
.messageBox {
width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  padding: 0 15px;
  border: 1px solid rgb(63, 63, 63);
  border-radius: 0px 0px 20px 20px;
}

.messageBox:focus-within {
  border: 1px solid rgb(110, 110, 110);
}

.fileUploadWrapper {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

#file {
  display: none;
}

.fileUploadWrapper label {
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fileUploadWrapper label svg {
  height: 18px;
}

.fileUploadWrapper label svg path {
  transition: all 0.3s;
}

.fileUploadWrapper label svg circle {
  transition: all 0.3s;
}

.fileUploadWrapper label:hover svg path {
  stroke: #333;
}

.fileUploadWrapper label:hover svg circle {
  stroke: #333;
  fill: #3c3c3c;
}

.fileUploadWrapper label:hover .tooltip {
  display: block;
  opacity: 1;
}

.tooltip {
  position: absolute;
  top: -40px;
  display: none;
  opacity: 0;
  color: white;
  font-size: 10px;
  text-wrap: nowrap;
  background-color: #000;
  padding: 6px 10px;
  border: 1px solid #3c3c3c;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.596);
  transition: all 0.3s;
}

#messageInput {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  padding-left: 10px;
  color: #333;
  font-weight: bolder;
  border-radius: 20px 0px 0px 20px 2px  ;
}

#messageInput:focus~#sendButton svg path,
#messageInput:valid~#sendButton svg path {
  fill: #3c3c3c;
  stroke: #333;
}

#sendButton {
  width: fit-content;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

#sendButton svg {
  height: 18px;
  transition: all 0.3s;
}

#sendButton svg path {
  transition: all 0.3s;
}

#sendButton:hover svg path {
  fill: #eda6a6;
  stroke: #ffffff;
}     
/* 27. Attendence Portal */
.signin-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.signin-form {
  width: 350px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;

}

.signin-form form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
  color: var(--white)fff;
  /* padding: 5px; */
  overflow: hidden;
}

.signin-form form .brand {
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.signin-form form .brand h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.signin-form form .brand img {
  width: 100px;
  height: 100px;
  /* border: #1e90ff solid 4px; */
  border-radius: 100%;
  display: block;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.signinbtncss {
  width: 100%;
  height: 50px;
  border: none;
  text-align: center;
  background-color: #f6f5f8;
  color: #333;
  border-radius: 50px;
  margin-top: 30px;
  font-weight: bolder;
  font-size: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.signinbtncss i {
  font-size: 20px;
  font-weight: bolder;

}

.signinbtncss:hover {
  color: #fff;
  background-color: #333;
  transform: translateY(-20px);
}

.signin-page {
  background-image: url('assist/img/Background/Attendence.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.input-container-signinpage input[type="text"]:focus~.label,
.input-container-signinpage input[type="text"]:valid~.label {
  top: -20px;
  font-size: 16px;
  color: var(--white);
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.discover-more {
  width: 12rem;
  height: auto;
}

button.discover-more .sphere {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

.spherea {
  background-color: green !important;
}

.sphereb {
  background-color: red !important;
}

button.discover-more .sphere .symbol {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.discover-more .sphere .symbol.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.discover-more .sphere .symbol.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.discover-more .button-caption {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .sphere {
  width: 100%;
}

button:hover .sphere .symbol.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-caption {
  color: #fff;
}