* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.background,
.background-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

body {
  font-family: "Inter";
  height: 100vh;
  position: relative;
  font-size: 15px !important;
  transition: background-color 0.3s ease;
}

.background {
  position: fixed;
}
html[data-bs-theme=light] .background {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 7.08%, rgba(189, 201, 237, 0.3) 91.08%);
}
html[data-bs-theme=dark] .background {
  background: linear-gradient(180deg, #333333 7.08%, #010101 91.08%);
}

.background-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  user-select: none;
  pointer-events: none;
}
html[data-bs-theme=light] .background-image {
  background-image: url("/css/login/logos/background-base-dark-web-a3a6c4db3448d58d870dc0291835fb13.png");
}
html[data-bs-theme=dark] .background-image {
  background-image: url("/css/login/logos/background-base-dark-web-a3a6c4db3448d58d870dc0291835fb13.png");
}

.theme-toggle {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1000;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
  padding: 0.5em;
  border-radius: 50%;
  transition: all 0.3s ease;
}
html[data-bs-theme=light] .theme-toggle {
  color: #000;
}
html[data-bs-theme=dark] .theme-toggle {
  color: #fff;
}
.theme-toggle:hover {
  transform: scale(1.1);
}

.logo-container {
  position: fixed;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 500px;
  max-width: 100%;
}
.logo-container .logo-image {
  max-width: 100%;
  transition: content 0.3s ease;
}
html[data-bs-theme=light] .logo-container .logo-image {
  content: url("/css/login/logos/new-logo-dark-fab5ba842fd3351fa9ef875ea0e6bfb1.svg");
}
html[data-bs-theme=dark] .logo-container .logo-image {
  content: url("/css/login/logos/new-logo-light-9acafb0c198f728ba883df7c49423bc0.svg");
}

.login-card {
  position: fixed;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
  padding: 3em 2.5em;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(11px 19px 30px rgba(0, 0, 0, 0.08));
  z-index: 10;
  transition: all 0.3s ease;
}
html[data-bs-theme=light] .login-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #EBEEF9 100%);
  border: 1px solid #d2d2d2;
}
html[data-bs-theme=dark] .login-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #EBEEF9 100%);
  border: 1px solid #8A8A8A;
}
.login-card form {
  width: 100%;
}
.login-card .logo-container-wrapper {
  position: relative;
  margin-bottom: 4em;
}
.login-card .logo-container-wrapper .logo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card .logo-container-wrapper .logo-brand img {
  max-width: 220px;
  max-height: 54px;
  transition: content 0.3s ease;
}
html[data-bs-theme=light] .login-card .logo-container-wrapper .logo-brand img {
  content: url("/css/login/logos/logo-studio-ae7669bd1cf63d257168a7e4e0c2f036.svg");
}
html[data-bs-theme=dark] .login-card .logo-container-wrapper .logo-brand img {
  content: url("/css/login/logos/logo-studio-ae7669bd1cf63d257168a7e4e0c2f036.svg");
}
.login-card .logo-container-wrapper .logo-tagline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 1em 0;
  gap: 0.3em;
  transition: color 0.3s ease;
}
html[data-bs-theme=light] .login-card .logo-container-wrapper .logo-tagline {
  color: #8A8A8A;
}
html[data-bs-theme=dark] .login-card .logo-container-wrapper .logo-tagline {
  color: #8A8A8A;
}
.login-card .logo-container-wrapper .logo-tagline img {
  max-height: 14px;
  transition: content 0.3s ease;
}
html[data-bs-theme=light] .login-card .logo-container-wrapper .logo-tagline img {
  content: url("/css/login/logos/logo-mozaic-d62b62ba2689d919fef23eb33881a2b5.svg");
}
html[data-bs-theme=dark] .login-card .logo-container-wrapper .logo-tagline img {
  content: url("/css/login/logos/logo-mozaic-d62b62ba2689d919fef23eb33881a2b5.svg");
}
.login-card .logo-container-wrapper .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card .logo-container-wrapper .client-logo img {
  max-width: 300px;
  max-height: 60px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group {
  margin-bottom: 2em;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-size: 1em;
  margin-bottom: 0.5em;
  font-weight: 500;
  transition: color 0.3s ease;
}
html[data-bs-theme=light] .form-group label {
  color: #000000;
}
html[data-bs-theme=dark] .form-group label {
  color: #000000;
}
.form-group .form-control {
  width: 100%;
  padding: 0.75em 1em;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  outline: 0;
  transition: all 0.3s ease;
}
html[data-bs-theme=light] .form-group .form-control {
  background-color: #FFFFFF;
  color: #333333;
}
html[data-bs-theme=dark] .form-group .form-control {
  background-color: #FFFFFF;
  color: #333333;
}
.form-group .form-control::placeholder {
  color: #8A8A8A;
  opacity: 1;
}
.form-group .form-control::-webkit-input-placeholder {
  color: #8A8A8A;
  opacity: 1;
}
.form-group .form-control::-moz-placeholder {
  color: #8A8A8A;
  opacity: 1;
}
.form-group .form-control:-ms-input-placeholder {
  color: #8A8A8A;
  opacity: 1;
}
.form-group select.form-control {
  cursor: pointer;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
html[data-bs-theme=light] .form-group select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}
html[data-bs-theme=dark] .form-group select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.password-wrapper {
  position: relative;
}
.password-wrapper .form-control {
  padding-right: 3em;
}
.password-wrapper .togglePassword {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1em;
  transition: color 0.3s ease;
}
html[data-bs-theme=light] .password-wrapper .togglePassword {
  color: #1E4DDE;
}
html[data-bs-theme=light] .password-wrapper .togglePassword:hover {
  color: #333333;
}
html[data-bs-theme=dark] .password-wrapper .togglePassword {
  color: #1E4DDE;
}
html[data-bs-theme=dark] .password-wrapper .togglePassword:hover {
  color: #333333;
}
.password-wrapper .togglePassword i {
  pointer-events: none;
}

html[data-bs-theme=light] .link-text-light {
  color: #FFFFFF;
}
html[data-bs-theme=dark] .link-text-light {
  color: #FFFFFF;
}

.password-security-wrapper {
  position: relative;
}

#passwordUL {
  position: absolute;
  left: inherit;
  width: 100%;
  background: #f5f5f5;
  top: 100%;
  padding: 10px;
  list-style: none;
  margin: 0;
  z-index: 9;
  border-radius: 4px;
  box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.5);
}

#passwordUL:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #f5f5f5;
  top: -14px;
  position: absolute;
  right: 22px;
}

#passwordUL li {
  padding: 5px 5px 1px 15px;
  border: 0 !important;
  position: relative;
}

#passwordUL li span {
  font-size: 13px;
  position: relative;
  display: inline-block;
}

#passwordUL li span:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100%;
  left: 0;
}

#passwordUL li.success span {
  color: green;
}

#passwordUL li:before {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: -2px;
  top: 7px;
}

#passwordUL li.success:before {
  content: "\f00c";
  color: green;
}

#passwordUL li.error:before {
  content: "\f00d";
  color: red;
}

#passwordUL li.error span {
  color: red;
}

#passwordUL li.error span:before {
  background: red;
}

.forgot-password-wrapper {
  text-align: right;
  margin-top: 0.5em;
}

.forgot-password {
  text-decoration: none;
  transition: color 0.3s ease;
}
html[data-bs-theme=light] .forgot-password {
  color: #1E4DDE;
}
html[data-bs-theme=dark] .forgot-password {
  color: #1E4DDE;
}
.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 0.6em 1em;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1em;
  transition: all 0.3s ease;
}
html[data-bs-theme=light] .login-btn {
  background-color: #1E4DDE;
  color: #fff;
}
html[data-bs-theme=dark] .login-btn {
  background-color: #1E4DDE;
  color: #fff;
}
.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.login-btn:active {
  transform: translateY(0);
}

.activity-zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: left;
  align-items: center;
}
.activity-zone-list input[type=submit] {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  padding: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease;
}
html[data-bs-theme=light] .activity-zone-list input[type=submit] {
  background-color: #FFFFFF;
  border: solid 1px #1E4DDE;
  color: #333333;
}
html[data-bs-theme=dark] .activity-zone-list input[type=submit] {
  background-color: #FFFFFF;
  border: solid 1px #1E4DDE;
  color: #333333;
}

.imgWelding {
  width: 44px;
  height: 44px;
  background-image: url("../logos/welding.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader .load-container {
  text-align: center;
  width: 100px;
  height: 70px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 8px;
}
html[data-bs-theme=light] .loader .load-container {
  background-color: #FFFFFF;
}
html[data-bs-theme=dark] .loader .load-container {
  background-color: #FFFFFF;
}

.loader .load-container .spin-blue-center {
  font-size: 1em;
  display: block;
  margin-bottom: 0em;
}
html[data-bs-theme=light] .loader .load-container .spin-blue-center {
  color: #1E4DDE;
}
html[data-bs-theme=dark] .loader .load-container .spin-blue-center {
  color: #1E4DDE;
}

.copyright-bottom-msg {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
}
html[data-bs-theme=light] .copyright-bottom-msg {
  color: #000000;
}
html[data-bs-theme=dark] .copyright-bottom-msg {
  color: #FFFFFF;
}

@media (max-width: 1200px) {
  .logo-container {
    left: 5%;
    max-width: 350px;
  }
  .logo-container .logo-image {
    max-width: 300px;
  }
  .login-card {
    right: 5%;
    max-width: 380px;
    padding: 2.5em 2em;
  }
}
@media (max-width: 991px) {
  .logo-container {
    left: 2%;
    max-width: 350px;
  }
  .logo-container .logo-image {
    max-width: 100%;
  }
  .login-card {
    right: 2%;
    max-width: 360px;
    padding: 2em;
  }
}
@media (max-width: 767px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .background-image {
    background-image: url("/css/login/logos/background-base-dark-mob-4eda104e69dc05b3224ea2180e5cc576.png");
  }
  .logo-container {
    max-width: 500px;
    position: absolute;
    transform: none;
    top: 0;
    left: auto;
    right: auto;
    width: 100%;
    height: 330px;
    justify-content: center;
    display: flex;
  }
  .logo-container .logo-image {
    max-width: 350px;
  }
  .login-card {
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
    padding: 1.5em;
    transform: none;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    top: auto;
    height: calc(100vh - 350px);
  }
  .login-card .logo-container-wrapper {
    margin-bottom: 1em;
  }
  .login-card .logo-container-wrapper .logo-brand img {
    max-width: 200px;
  }
  .form-group {
    margin-bottom: 1em;
  }
  .form-group label {
    margin-bottom: 0.3em;
  }
  .login-btn {
    margin-top: 3em;
  }
  .activity-zone-list input[type=submit] {
    width: 36px;
    height: 36px;
  }
  .imgWelding {
    width: 36px;
    height: 36px;
  }
  .theme-toggle {
    top: 10px;
    right: 10px;
    font-size: 1em;
  }
}
@media (max-width: 576px) {
  .logo-container {
    max-width: 100%;
    position: absolute;
    transform: none;
    top: 0;
    left: auto;
    right: auto;
    width: 100%;
    height: 220px;
    justify-content: center;
    display: flex;
  }
  .logo-container .logo-image {
    max-width: 250px;
    max-height: 200px;
  }
  .login-card {
    bottom: 50px;
    left: 0;
    right: 0;
    top: auto;
    max-height: calc(100vh - 250px);
    height: auto;
  }
  .login-btn {
    margin-top: 0em;
  }
}
.bootoast {
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 1.5em 1em;
  box-shadow: 0px 2px 5px 0px rgb(153, 153, 153);
  border-radius: 6px;
}

.bootoast-container.top {
  top: 1em;
}

.bootoast-container {
  right: 0 !important;
  width: 400px;
}

.bootoast-container .fa {
  display: table-cell;
  vertical-align: top;
  font-size: 2em;
  padding: 0.2em;
}

.bootoast-container .bootoast-alert-container {
  display: table-cell;
  vertical-align: top;
  padding: 0.6em;
  color: #000;
}

.bootoast-container .alert-dismissable .close {
  top: -10px;
  right: -10px;
}

.bootoast-container .alert-dismissable .close {
  top: 0px;
  right: 10px;
  position: absolute;
  border: 0;
  background: transparent;
  font-size: 1.5em;
}

.custom-form-wrapper .input-group-btn {
  font-size: 1em;
}

.bootoast-container .toast {
  padding: 1.5em 1em;
  position: relative;
  background: #fff;
  width: 100%;
  box-shadow: 2px 2px 5px 0px rgba(10, 10, 10, 0.5);
  border-radius: 6px;
  border: 0;
  margin-top: 5px;
}

.bootoast-container .toast .toast-header {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  top: 0;
  background: transparent !important;
  border: 0;
  border-top: 6px;
}

.bootoast-container .toast .toast-header.bg-warning {
  border-top: solid 6px #e08e0b;
}

.bootoast-container .toast .toast-header.bg-danger {
  border-top: solid 6px #d73925;
}

.bootoast-container .toast .toast-header.bg-success {
  border-top: solid 6px #008d4c;
}

.bootoast-container .toast .fa {
  position: relative;
  top: 1.2em;
  font-size: 2em;
}

.bootoast-container .toast .bg-warning .fa {
  color: #e08e0b;
}

.bootoast-container .toast .bg-danger .fa {
  color: #d73925;
}

.bootoast-container .toast .bg-success .fa {
  color: #008d4c;
}

.bootoast-container .toast .toast-body {
  padding: 1em 1.5em 0.5em 3em;
  font-size: 1em;
  color: #000;
}

.bootoast-container .toast .toast-header .btn-close {
  position: absolute;
  right: 1em;
  top: 1em;
}/*# sourceMappingURL=login.css.map */