

         .loginbtn:hover 
         {
         background-color: #f6c94ad1 !important;
         border-color: #f6c94ad1 !important;
         }
         .loginbtn
         {
         width:45%;
         }
         .loginfooter{
         position: absolute;bottom: 0;height: 60px;margin-left: 10.8%;border-color:lightgrey !important;
         }
         .logininput{
         background-color: white !important;border-color: white !important;color: black !important;
         }
         .loginp{color: white;font-size: medium;}
         .loginrow{
         position: relative;
         transform: translatey(-50%);
         top: 50%;
         left: 30%;
         }
         @media only screen and (min-width: 0px) and (max-width:480px) {
         .loginrow{
         left: 0%;
         }
        
         }
         /*Tablet Query*/
         @media only screen and (min-width: 481px) and (max-width:768px) {
         .loginrow{
         left: 0%;
         }
		 }
       
.custom-checkbox {
    
    height: 40px;
	    z-index: 0;
		margin-bottom:10px;
}
.custom-checkbox input#status {
  display: none;
}
.custom-checkbox input#status + label {
  height: 100%;
  width: 100%;
}
.custom-checkbox input#status + label > .status-switch {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(90deg, #de9f17 0%, #d19c15 33%, #fff58c 67%, #ffbf00 100%) !important;
  color: #0f0f29;font-weight: 600;
  transition: all 0.5s ease;
  padding: 3px;
  border-radius: 3px;
}
.custom-checkbox input#status + label > .status-switch:before, .custom-checkbox input#status + label > .status-switch:after {
  border-radius: 2px;
  height: calc(100% - 6px);
  width: calc(50% - 3px);
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  transition: all 0.3s ease;
}
.custom-checkbox input#status + label > .status-switch:before {
  background-color: white;
  color: black;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.2);
  left: 3px;
  z-index: 10;
  content: attr(data-unchecked);
}
.custom-checkbox input#status + label > .status-switch:after {
  right: 0;
  content: attr(data-checked);
}
.custom-checkbox input#status:checked + label > .status-switch {
  background-color: #40c253;
}
.custom-checkbox input#status:checked + label > .status-switch:after {
  left: 0;
  content: attr(data-unchecked);
}
.custom-checkbox input#status:checked + label > .status-switch:before {
  color: #25164f;
  left: 50%;
  content: attr(data-checked);
}