@import "../vendor/bootstrap/dist/css/bootstrap.min-z0zQt-h.css";
@import "../fonts/styles-KZhDawf.css";
@media screen and (prefers-color-scheme: light) {
  html {
    background-color: white;
  }
}
* {
  font-family: "NoirPro", "Arial", serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 1rem;
}

#wrapper {
  width: 100%;
  max-width: 1200px;
}

a {
  color: #7352C7;
  text-decoration: none;
}
a:hover {
  color: #5938ae;
  text-decoration: underline;
}
a:focus-visible {
  outline-color: rgba(115, 82, 199, 0.25);
  outline-offset: 3px;
}

div, p {
  color: #475259;
}

tr td, tr th {
  text-wrap-mode: nowrap;
}

svg.feather {
  width: 28px;
  height: 28px;
}

.btn {
  background-color: #7352C7;
  border-color: #7352C7;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.btn:hover {
  color: #ffffff;
  background-color: #5d3bb5;
  border-color: #5d3bb5;
}
.btn.btn-outline-secondary {
  color: #475259;
}
.btn i {
  color: #ffffff;
}
.btn svg {
  margin-bottom: 2px;
}

.notice {
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 6px solid #7f7f84;
  margin-bottom: 10px;
  box-shadow: 0 5px 8px -6px rgba(0, 0, 0, 0.2);
}
.notice.notice-danger {
  background-color: #fdf7f7;
  border-color: #d73814;
}
.notice.notice-success {
  background-color: #F4FDF0;
  border-color: #3C763D;
}

.input-group:focus-within {
  border-color: rgba(115, 82, 199, 0.5);
  border-radius: 0.375rem;
  box-shadow: 0 0 0 0.2rem rgba(115, 82, 199, 0.25);
}
.input-group:focus-within .form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.input-group:focus-within .input-group-text {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.input-group:focus-within .btn {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

button:focus {
  box-shadow: 0 0 0 0.2rem rgba(115, 82, 199, 0.25) !important;
}

.checkbox-wrapper {
  position: relative;
}
.checkbox-wrapper:focus-within {
  outline-offset: 3px;
  outline: rgba(115, 82, 199, 0.25) solid 2px;
  border-radius: 0.375rem;
}
.checkbox-wrapper input[type=checkbox] {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
}
.checkbox-wrapper input[type=checkbox]:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(115, 82, 199, 0.25);
}
.checkbox-wrapper input[type=checkbox]:checked ~ .cbx {
  border-color: transparent;
  background: #7352C7;
  animation: jelly 0.6s ease;
}
.checkbox-wrapper input[type=checkbox]:checked ~ .cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.checkbox-wrapper label {
  vertical-align: middle;
}
.checkbox-wrapper label.label {
  display: inline-block;
  font-size: 0.975rem;
  font-weight: 400;
  margin-left: 5px;
  cursor: pointer;
}
.checkbox-wrapper label.label:focus-within {
  outline: 2px solid cornflowerblue;
}
.checkbox-wrapper label.cbx {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #c8ccd4;
  border-radius: 3px;
  transition: background 0.1s ease;
  cursor: pointer;
}
.checkbox-wrapper label.cbx:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}

.card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}
.card .row {
  flex: 1;
  min-width: 0;
}
.card .left-panel {
  position: relative;
  min-height: 280px;
  background: #0267a0 url("../images/default-background-fyXhheI.jpg") no-repeat center;
  background-image: var(--bg-image, url("../images/default-background-fyXhheI.jpg"));
  background-size: cover;
}
@media (min-width: 768px) {
  .card .left-panel {
    min-height: 450px;
    flex: 0 0 40%;
  }
}
.card .left-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bg-overlay, rgba(2, 103, 160, 0.65));
  pointer-events: none;
}
.card .left-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 2rem;
  color: #fff;
}
.card .title {
  margin: 0 0 24px;
  color: inherit;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.card .description {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.5;
}
.card .logo {
  margin-top: auto;
  padding-top: 1.5rem;
}
.card .logo .img {
  max-height: 24px;
  width: auto;
}
.card form .form-control {
  padding: 0.5rem 0.75rem;
  font-weight: 300;
  border-radius: 0.375rem;
}
.card form .input-group-text {
  color: var(--bs-btn-color);
}
.card form .btn-outline-secondary {
  background-color: var(--bs-tertiary-bg);
  border-color: #dee2e6;
}
.card form .btn-outline-secondary:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.otp-inputs input.otp-box {
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 1.25rem;
  padding: 0;
}
.otp-inputs input:focus-visible {
  border-color: rgba(115, 82, 199, 0.5);
  border-radius: 0.375rem;
  box-shadow: 0 0 0 0.2rem rgba(115, 82, 199, 0.25);
}

@keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}

/*# sourceMappingURL=app.output.css.map */
