@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;1,200;1,400;1,500;1,600;1,700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #f5f5f5;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0.75rem 0;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #888;
}

.small {
  font-size: 0.875em;
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 55px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  background-color: #000;
  color: #fff;
  z-index: 1000;
}
.topbar .topbar-app-name {
  font-size: 1.5rem;
  font-weight: 500;
}
.topbar a {
  color: inherit;
  text-decoration: none;
}

.content {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
  bottom: 0;
  padding: 10px;
  overflow-y: auto;
}

.center-cover {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.center-cover.login-surround {
  background-image: url("/images/Login.png");
  background-size: cover;
}

.card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow-x: hidden;
  padding: 0;
}
.card .card-body {
  margin: 12px;
}
.card.center-card {
  width: 400px;
  max-width: 95%;
  max-height: 90%;
  overflow-y: auto;
}

form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-group {
  margin-bottom: 10px;
}
.form-group label {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 2px;
  font-weight: 500;
}
.form-group label.required::after {
  content: "*";
  color: #dc3545;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password] {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px;
  width: 100%;
  font-size: 16px;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus {
  outline: none;
  border-color: #000;
}
.form-group input[type=text].is-invalid,
.form-group input[type=email].is-invalid,
.form-group input[type=password].is-invalid {
  border-color: #dc3545;
}
.form-group .validation-message {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn:not(:last-of-type) {
  margin-right: 6px;
}
.btn.btn-primary {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.btn.btn-primary:hover:not(:disabled) {
  background-color: #888;
  border-color: #888;
}
.btn.btn-secondary {
  background-color: #b3b3b3;
  color: #000;
  border-color: #b3b3b3;
}
.btn.btn-secondary:hover:not(:disabled) {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn.full-width {
  width: 100%;
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.alert {
  border: 2px solid #000;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 6px;
  margin-bottom: 10px;
}
.alert.alert-info {
  border-color: #43accf;
  color: #43accf;
}
.alert.alert-success {
  border-color: #28a745;
  color: #28a745;
}
.alert.alert-warning {
  border-color: #ffc107;
  color: #ffc107;
}
.alert.alert-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.loading {
  text-align: center;
  padding: 20px;
}
.loading .loading-blob {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #000;
  scale: 50%;
}
.loading .loading-blob:nth-child(1) {
  animation: bubble 2s linear 0s infinite;
}
.loading .loading-blob:nth-child(2) {
  animation: bubble 2s linear 0.2s infinite;
}
.loading .loading-blob:nth-child(3) {
  animation: bubble 2s linear 0.4s infinite;
}
.loading .loading-blob:nth-child(4) {
  animation: bubble 2s linear 0.6s infinite;
}

@keyframes bubble {
  0% {
    scale: 50%;
  }
  25% {
    scale: 100%;
  }
  50% {
    scale: 50%;
  }
  100% {
    scale: 50%;
  }
}
.text-center {
  text-align: center;
}

/*# sourceMappingURL=site.css.map */
