a,
body,
div,
form,
html,
img,
input,
label,
p,
span {
  font-family: sans-serif, Arial;
}

body,
html {
  min-height: 100%;
  overflow-x: hidden;
  color: #c3c3c3;
}

a {
  color: #fff;
}

.text-primary {
  color: #ee3238;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: #c3c3c3;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input,
label {
  vertical-align: middle;
  white-space: normal;
  background: 0 0;
  line-height: 1;
}

label {
  position: relative;
  display: block;
}
p::first-letter {
  text-transform: uppercase;
}

.main {
  min-height: calc(100vh - 90px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ie-fixMinHeight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ico {
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 13px;
  margin-left: 30px;
}

.logo {
  max-width: 200px;
  display: block;
  margin: 0 auto 30px auto;
}

.mascot {
  max-width: 100px;
  display: block;
  margin: 0 auto 30px auto;
}

.logo * {
  fill: #fff;
}
.lite .logo * {
  fill: #444;
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 24px !important;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}

.wrap {
  margin: auto;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

@media only screen and (min-width: 1px) and (max-width: 575px) {
  .wrap {
    width: 100%;
  }
}

form {
  width: 100%;
  margin-bottom: 20px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.info {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

input {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline: 0;
}

input[type="password"],
input[type="text"] {
  width: 90%;
  background-color: #222222;
  color: #6b6b6b;
  height: 44px;
  padding: 3px 20px 3px 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: #222222;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

input[type="password"]:focus,
input[type="text"]:focus {
  -webkit-box-shadow: 0 0 5px 0 #222222b6;
  box-shadow: 0 0 5px 0 #222222b6;
}

.bt {
  opacity: 0.4;
}
input[type="submit"] {
  color: #fff;
  background-image: linear-gradient(to right, #ee323980 20%, #ee323980 100%);
  width: 90%;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  height: 44px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  background-size: 200% 100%;

  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

input[type="submit"]:focus,
input[type="submit"]:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
} /* Hide the default radio button */
.btn_service input[type="radio"] {
  display: none;
}

/* Custom radio button indicator */
.btn_service label.btn-default:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
}

/* Style for the custom radio button when selected */
.btn_service input[type="radio"]:checked + label.btn-default {
  background-color: #ee323980; /* Change to indicate selection */
}

.btn_service input[type="radio"]:checked + label.btn-default:before {
  background-color: #ee323980; /* Change to indicate selection */
  border-color: #ee323980;
}

input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

table td {
  color: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 4px 10px 0;
}

table td:first-child {
  font-weight: 700;
}

.lite {
  background: #fff;
}

.lite input[type="password"],
.lite input[type="text"] {
  border: 1px solid #c3c3c3;
}

.lite .info,
.lite h1,
.lite table td {
  color: #444;
}

.lite input[type="password"]:focus,
.lite input[type="text"]:focus {
  -webkit-box-shadow: 0 0 5px 0 rgba(62, 77, 89, 0.2);
  box-shadow: 0 0 5px 0 rgba(62, 77, 89, 0.2);
}

.dark {
  background: #343434;
}

.dark input[type="submit"] {
  background: #dc3a41;
}

.dark input[type="submit"]:focus,
.dark input[type="submit"]:hover {
  background: #b92f35;
}

.dark input[type="password"],
.dark input[type="text"] {
  background-color: #fff;
}

.dark a {
  color: #dc3a41;
}

.dark table td {
  border-bottom: 1px solid #505050;
}

.info.alert {
  color: #da3d41;
}

@media (min-width: 576px) {
  .wrap {
    width: 410px;
  }
  * {
    font-size: 14px !important;
  }
}

/* Added CSS */
.click-here {
  color: #fff !important;
  background-image: linear-gradient(to right, #99b946 20%, #30bc9d 100%);
  width: 90%;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  height: 44px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  background-size: 200% 100%;
  margin: auto;

  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.click-here :hover {
  background-position: 100% 0 !important;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#login-form-wrap {
  background-color: #181818b6;
  width: 350px;
  margin: auto;
  text-align: center;
  padding: 20px 0 0 0;
  border-radius: 4px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.error-wrap {
  background-color: #222222b6;
  width: 350px;
  height: 150px;
  margin: auto;
  text-align: center;
  padding: 20px 0 0 0;
  border-radius: 4px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.error-wrap h1 {
  color: #444 !important;
}

.error-wrap .info {
  color: #444 !important;
}

.status-wrap {
  background-color: #222222b6;
  width: 450px;
  margin: auto;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  height: auto;
  color: #343434 !important;
}
