@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: 3px; */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #000;
}
h1 {
  /* font-family: "Impact", fantasy; */
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #454545;
}
h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #454545;
}
th {
  background-color: #F8F9F9;
  padding: 10px;
}
p {
  color: #999;
  /* font-family: monospace; */
  font-family: "Poppins", sans-serif;
}
a {
  color: #000;
  /* font-family: "Andale Mono", monospace; */
  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] {
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  /* font-family: monospace; */
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  width: 400px;
  height: 30px;
}
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;
}
textarea {
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  /* font-family: monospace; */
  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: monospace; */
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
button:focus {
  border: none;
  outline: none;
}
.center {
  margin: auto;
  width: 60%;
  padding: 10px;
}
.center_content {
  margin: auto;
  width: 50%;
  padding: 0px;
}
.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    display: none;
    height: 25px;
    border-radius: 3px;
}
.failure {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    display: none;
    height: 25px;
    border-radius: 3px;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* 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: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

hr.style-two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
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;
}
