/* [project]/src/app/globals.css [app-client] (css) */
html, body {
  background: #f9f9f9;
  overflow-x: hidden;
}

body {
  flex-direction: column;
  justify-content: center;
  place-items: center;
  min-height: 100vh;
  padding: 1px 5px 20px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

@viewport {
  width: device-width;
  zoom: 1;
  max-zoom: 1;
  min-zoom: 1;
  user-zoom: fixed;
}

.demo-app {
  flex-grow: 1;
}

.element {
  color: #fff;
  cursor: pointer;
  background-color: #6c47ff;
  border-radius: 9999px;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .element {
    height: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 1rem;
  }
}

.modal-overlay {
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-overlay.modal-open {
  opacity: 1;
  visibility: visible;
  background-color: #00000080;
}

.modal-content {
  opacity: 0;
  min-width: 55vh;
  max-width: 950px;
  max-height: 100vh;
  transition: all .3s ease-in-out;
  position: relative;
  transform: translateY(-20px)scale(.95);
}

.modal-overlay.modal-open .modal-content {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.modal-close {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 24px;
  transition: background-color .4s;
  position: fixed;
  top: 8px;
  right: 7px;
}

.modal-close:hover {
  background-color: #dddbdb;
  border-radius: 50%;
}

.modal-dialog {
  justify-content: center;
  display: flex;
}

.auth-container {
  box-sizing: border-box;
  background: #e6e6fa;
  border-radius: 27px;
  justify-content: center;
  align-items: center;
  width: -webkit-fill-available;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  position: relative;
}

.language-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.language-switcher {
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
  transition: transform .3s;
  box-shadow: 0 2px 8px #0000001a;
}

.language-switcher:hover {
  background: #ffffffe6;
}

.language-switcher:hover + .language-tooltip {
  color: #6d6464;
}

.language-switcher img {
  background: #ffffff4d;
  width: 24px;
  height: 24px;
  display: block;
}

.language-switcher:active {
  animation: .3s scaleClick;
}

@keyframes scaleClick {
  10% {
    transform: scale(.8);
  }

  80% {
    transform: scale(1);
  }
}

.language-tooltip {
  color: #d6d6d6;
  margin: 5px;
}

.auth-card {
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  min-width: 20rem;
  max-width: 20rem;
  padding: 40px 30px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 10px 30px #0000001a;
}

@media (max-width: 768px) {
  .auth-card {
    scale: .8;
  }

  .language-container {
    flex-direction: row;
  }
}

.auth-transition.register-active {
  animation: .3s ease-in-out slideInReg;
}

.auth-transition.login-active {
  animation: .3s ease-in-out slideInLog;
}

@keyframes slideInReg {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLog {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.form-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.form-label {
  color: #374151;
  -webkit-user-select: none;
  user-select: none;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}

.form-input {
  background: #eef3f647;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  padding: 12px 16px;
  font-size: 16px;
  transition: all .2s;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
}

.form-input:hover {
  box-shadow: 0 0 0 3px #667eea1a;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px #667eea1a;
}

.input-error {
  border-color: #ef4444;
}

.auth-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.auth-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px #667eea66;
}

.auth-button:active {
  transform: translateY(0);
}

.toggle-section {
  text-align: center;
  border-top: 1px solid #e5e7eb;
  margin-top: 25px;
  padding-top: 20px;
}

.toggle-text {
  color: #6b7280;
  margin-bottom: 10px;
  font-size: 14px;
}

.toggle-button {
  color: #667eea;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.toggle-button:hover {
  color: #5a67d8;
}

.auth-title {
  text-align: center;
  color: #1f2937;
  -webkit-user-select: none;
  user-select: none;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.error-message {
  color: #ef4444;
  text-align: center;
  font-size: 14px;
}

.success-message {
  color: #10b981;
  text-align: center;
  min-height: 20px;
  margin-top: 10px;
  font-size: 14px;
}

.navigation {
  color: #fff;
  z-index: 50;
  background-color: #3e3e3e;
  border-radius: 4px;
  width: -webkit-fill-available;
  margin-bottom: 22px;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.nav-container {
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  display: flex;
}

.nav-section {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.nav-logo {
  color: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-logo:hover {
  color: #bfdbfe;
}

.nav-links {
  gap: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: inherit;
  border-radius: .375rem;
  padding: .5rem .75rem;
  text-decoration: none;
  transition: color .2s;
}

.nav-link.active {
  color: #bfdbfe;
}

.nav-link:hover {
  color: #bfdbfe;
  background-color: #ffffff1a;
}

.nav-user-section, .user-info {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.user-details {
  text-align: right;
  display: none;
}

@media (min-width: 640px) {
  .user-details {
    display: block;
  }
}

.user-name {
  font-size: .875rem;
  font-weight: 500;
}

.user-dept {
  color: #bfdbfe;
  font-size: .75rem;
}

.dropdown-container {
  position: relative;
}

.dropdown-toggle {
  color: inherit;
  cursor: pointer;
  background-color: #1d4ed8;
  border: none;
  border-radius: .375rem;
  align-items: center;
  gap: .25rem;
  padding: .4rem .75rem;
  transition: background-color .2s;
  display: flex;
}

.dropdown-toggle:hover {
  background-color: #1e40af;
}

.dropdown-arrow {
  font-size: .75rem;
}

.dropdown-menu {
  color: #1f2937;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  border-radius: .375rem;
  width: 12rem;
  margin-top: .5rem;
  transition: all .2s;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-10px);
  box-shadow: 0 10px 15px -3px #0000001a;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-button {
  text-align: left;
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 2.7rem;
  font-size: inherit;
  background: #fff;
  border: none;
  border-radius: .375rem;
  height: 2.7rem;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.dropdown-item-button:hover {
  background-color: #f3f4f6;
  border-radius: .375rem;
  transform: translateY(-2px);
}

.logout-button {
  border-top: 1px solid #e5e7eb;
}

.auth-buttons {
  gap: .75rem;
  display: flex;
}

.btn-primary {
  color: #2563eb;
  background-color: #fff;
  border-radius: .375rem;
  padding: .5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-secondary {
  color: #fff;
  border: 1px solid #fff;
  border-radius: .375rem;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color .2s;
}

.btn-secondary:hover {
  background-color: #1d4ed8;
}

.mobile-menu-button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .375rem;
  padding: .5rem;
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu-button:hover {
  background-color: #1d4ed8;
}

.mobile-menu {
  background-color: #2563eb;
  border-top: 1px solid #3b82f6;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.mobile-menu-content {
  flex-direction: column;
  gap: .75rem;
  padding: 1rem;
  display: flex;
}

.mobile-nav-link {
  color: inherit;
  border-radius: .375rem;
  padding: .5rem .75rem;
  text-decoration: none;
  transition: background-color .2s;
}

.mobile-nav-link:hover {
  background-color: #1d4ed8;
}

/* [project]/src/app/styles/root.css [app-client] (css) */
:root {
  --primary-color: #6366f1;
  --primary-hover: #a9a5e8;
  --primary-active: #4338ca;
  --primary-inactive: #b4b0ec;
  --danger-color: #ef4444;
  --danger-hover: #dc2626;
  --danger-active: #b91c1c;
  --success-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-color: #d1d5db;
  --border-focus: #93c5fd;
  --background-primary: #fff;
  --background-secondary: #f9fafb;
  --shadow-sm: 0 1px 2px 0 #0000000d;
  --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --radius-sm: .375rem;
  --radius-md: .5rem;
  --radius-lg: .75rem;
  --transition: all .2s ease-in-out;
}

/* [project]/src/app/styles/UserSettings.css [app-client] (css) */
.settings-form-container {
  background: var(--background-secondary);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: .1rem;
  display: flex;
}

.settings-form-title {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.border-bottom-line {
  border-bottom: 1px solid #e0e0e0;
  max-width: 32%;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

.settings-form-title:after {
  content: "";
  background: linear-gradient(90deg, var(--primary-color), var(--success-color));
  border-radius: 2px;
  width: 3rem;
  height: 3px;
  position: absolute;
  bottom: -.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.settings-form-content {
  background: var(--background-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 450px;
  max-width: 800px;
  margin: 2rem 3rem;
  padding: 1rem 3rem 0;
}

/* [project]/src/app/styles/Loader.css [app-client] (css) */
.loader-container {
  opacity: 1;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  display: flex;
  position: fixed;
  inset: 0;
}

.loader-text {
  color: #666;
  margin: 0 1rem;
  font-size: .9rem;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: 1s linear infinite spin;
}

.spinner-small {
  border-width: 2px;
  width: 20px;
  height: 20px;
}

.spinner-medium {
  border-width: 4px;
  width: 40px;
  height: 40px;
}

.spinner-large {
  border-width: 6px;
  width: 60px;
  height: 60px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: 1s linear infinite spin;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

/* [project]/src/app/styles/ChangePassword.css [app-client] (css) */
.custom-password-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}

.custom-password {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 16px;
}

.custom-password.masked {
  color: #666;
  text-shadow: 0 0 1px;
}

.custom-password.visible {
  color: #333;
}

.password-toggle-btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  font-size: 16px;
  position: absolute;
  top: 33%;
  right: 10px;
  transform: translateY(-50%);
}

.pass-change-form-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 600;
  display: block;
}

.pass-change-form-subtitle {
  color: #464646;
}

.pass-change-form-content-column {
  flex-flow: column wrap;
  justify-content: center;
  column-gap: 2.5rem;
  width: 100%;
  height: 100%;
  display: flex;
}

.pass-change-form-input, .pass-change-form-select {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  width: -moz-available;
  min-width: 14rem;
  height: 2.75rem;
  color: var(--text-primary);
  background: var(--background-primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.9rem;
  padding-left: 1rem;
  font-family: password-dots, monospace;
  font-size: .875rem;
}

.pass-change-form-input:hover:not(.disabled) {
  border-bottom-color: var(--primary-hover);
  outline: none;
  box-shadow: 0 0 0 3px #6366f11a;
}

.pass-change-button-container, .modal-dialog-container {
  border-top: 1px solid var(--border-color);
  text-align: end;
  margin: 1.5rem 0 1rem;
  padding-top: 1.5rem;
}

.pass-change-button-save, .modal-dialog-button-confirm {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  color: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  height: 47px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: none;
  padding: 0 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-block;
}

.disabled-btn {
  background: var(--primary-inactive);
}

.button-text {
  pointer-events: none;
  margin-top: 16px;
}

.pass-change-button-save:hover:not(.disabled-btn) {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-active));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pass-change-button-save:active {
  background: linear-gradient(135deg, var(--primary-active), var(--primary-color));
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
}

.error {
  color: var(--danger-color);
  font-size: .75rem;
}

@media (max-width: 768px) {
  .pass-change-form-content-columns {
    flex-direction: column;
    gap: 1.5rem 0;
  }

  .pass-change-form-input, .pass-change-form-select, .pass-change-form-textarea {
    max-width: 100%;
  }

  .pass-change-button-container, .modal-dialog-container {
    justify-content: center;
  }
}

/* [next]/internal/font/google/geist_a71539c9.module.css [app-client] (css) */
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/8a480f0b521d4e75-s.8e0177b5.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/7178b3e590c64307-s.b97b3418.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/caa3a2e1cccd8315-s.p.853070df.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Fallback;
  src: local(Arial);
  ascent-override: 95.94%;
  descent-override: 28.16%;
  line-gap-override: 0.0%;
  size-adjust: 104.76%;
}

.geist_a71539c9-module__T19VSG__className {
  font-family: Geist, Geist Fallback;
  font-style: normal;
}

.geist_a71539c9-module__T19VSG__variable {
  --font-geist-sans: "Geist", "Geist Fallback";
}

/* [next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-client] (css) */
@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/4fa387ec64143e14-s.c1fdd6c2.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/bbc41e54d2fcbd21-s.799d8ef8.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/797e433ab948586e-s.p.dbea232f.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Mono Fallback;
  src: local(Arial);
  ascent-override: 74.67%;
  descent-override: 21.92%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.geist_mono_8d43a2aa-module__8Li5zG__className {
  font-family: Geist Mono, Geist Mono Fallback;
  font-style: normal;
}

.geist_mono_8d43a2aa-module__8Li5zG__variable {
  --font-geist-mono: "Geist Mono", "Geist Mono Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__8ae0b295._.css.map*/