@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

@viewport { 
  width: device-width ;
  zoom: 1.0 ;
}
@-ms-viewport {
  width: device-width ;
}
body {
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 3px;
  margin-bottom: 3
  px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #000;
}
h1 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #454545;
}
h3 {
  /* font-family: "Impact", fantasy; */
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #454545;
}
th {
  background-color: #F8F9F9;
  padding: 10px;
}
p {
  color: #454545;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
a {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}
a.hover {
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}
a.active {
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}
a.visited {
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}
input[type=text], [type=password], [type=email] {
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  /* font-family: monospace; */
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  width: 400px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #555;
}
select {
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  /* font-family: monospace; */
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  width: 300px;
  line-height: 1.5;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #555;
}
textarea {
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  width: 400px;
}
input[type=button], [type=submit] {
  border-radius: 6px;
  padding: 10px;
  color: #fff;
  background-color: #454545;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid #555;
}
button:focus {
  border: none;
  outline: none;
}
.center {
  margin: auto;
  width: 60%;
  padding: 10px;
}
.center_content {
  margin: auto;
  width: 50vw;
  padding: 0px;
}
/* Styles for devices with width 768px or less (mobile devices) */
@media (max-width: 768px) {
  .center_content {
      width: 80%; /* Full width on mobile devices */
  }
}
form.nosubmit {
  border: none;
  padding: 0;
}
input.nosubmit {
  width: 260px;
  border: 1px solid #555;
  display: block;
  padding: 9px 4px 9px 40px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}
/* Optional CSS for styling */
label {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + img {
	border: 2px solid transparent;
	transition: border-color 0.3s ease-in-out;
}
input[type="radio"]:checked + img {
	border-color: #007bff; /* Example color for highlighting the selected image */
}
/* style.css */
.slider {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.slider input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-round {
  background-color: #2196F3;
}

input:checked + .slider-round:before {
  transform: translateX(26px);
}

#message {
  margin-top: 1rem;
  text-align: center;
  color: #28a745;
}