@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");
@import url("https://cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css");
/* ---------------------------------- Modern Dark Color System ---------------------------------- */
/* ---------------------------------- Material Icons ---------------------------------- */
.mdi {
  font-family: "Material Design Icons";
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mdi-18 {
  font-size: 18px;
}
.mdi-20 {
  font-size: 20px;
}
.mdi-24 {
  font-size: 24px;
}
.mdi-30 {
  font-size: 30px;
}
.mdi-36 {
  font-size: 36px;
}
.mdi-48 {
  font-size: 48px;
}
.mdi.md-dark {
  color: rgba(240, 246, 252, 0.7);
}
.mdi.md-dark.md-inactive {
  color: rgba(240, 246, 252, 0.4);
}
.mdi.md-light {
  color: rgb(255, 255, 255);
}
.mdi.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------- HTML5 Tags ----------------------------------  */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/* ---------------------------------- Form Error ---------------------------------- */
select.error, input[type=text].error, input[type=password].error, input[type=email].error, input[type=tel].error, textarea.error, button.error {
  border: solid 2px #ff6b6b;
  border-radius: 12px;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.errormsg {
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ff9e9e);
  padding: 12px 20px;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  animation: slideInDown 0.3s ease-out;
}
.errormsg .arrow {
  display: none;
  z-index: 1;
  position: absolute;
  top: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ff6b6b;
}

@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ---------------------------------- Responsive items ---------------------------------- */
table, img, iframe {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

.img-responsive, .vdo-responsive {
  width: 100%;
  display: block;
}

.img-hidden {
  visibility: hidden;
}

/* ---------------------------------- Fluid Youtube Video ---------------------------------- */
.vdowrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.vdowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ---------------------------------- Main ---------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #0d1117;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: #f0f6fc;
  border: 0;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0d1117 0%, rgb(18.525, 24.225, 32.775) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:after {
  content: "desktop";
  display: none;
}

a {
  text-decoration: none;
}

@media (max-width: 992px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 768px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 576px) {
  body:after {
    content: "mobile";
  }
}
@media (max-width: 320px) {
  body:after {
    content: "mobile";
  }
}
.left {
  float: left;
}

.right {
  float: right;
}

.clr {
  clear: both;
}

.point {
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.anchor {
  padding-top: 40px;
  margin-top: -40px;
}

.border {
  border: solid 1px rgba(48, 54, 61, 0.8);
  border-radius: 12px;
}

*:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3) !important;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
/* ---------------------------------- Headers ---------------------------------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-weight: 600;
  color: #f0f6fc;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1:hover, .h1:hover, h2:hover, .h2:hover, h3:hover, .h3:hover, h4:hover, .h4:hover, h5:hover, .h5:hover {
  color: #ff7b54;
  text-shadow: 0 0 20px rgba(255, 123, 84, 0.3);
}

h1, .h1 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f0f6fc, #ff7b54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2, .h2 {
  font-size: clamp(20px, 3.5vw, 24px);
  line-height: 1.3;
  margin-bottom: 16px;
}

h3, .h3 {
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.4;
  margin-bottom: 12px;
}

h4, .h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}

h5, .h5 {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  margin-bottom: 8px;
}

@media (max-width: 766px) {
  h1, .h1 {
    font-size: 22px;
  }
  h2, .h2 {
    font-size: 18px;
  }
  h3, .h3 {
    font-size: 16px;
  }
  h4, .h4 {
    font-size: 14px;
  }
}
a {
  color: #ff7b54;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
a:hover {
  color: #5865f2;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

/* ---------------------------------- Alert ---------------------------------- */
.alert {
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.8);
  margin: 0 0 30px 0;
  background: rgba(22, 27, 34, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.alert .mdi {
  font-size: 40px;
  color: #5865f2;
  filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.3));
}
.alert .headline {
  font-weight: 600;
  font-size: 20px;
  color: #f0f6fc;
  margin-top: 10px;
}
.alert-danger {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.1);
}
.alert-danger .mdi {
  color: #ff6b6b;
  filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.3));
}
.alert:hover {
  border-color: rgba(88, 101, 242, 0.6);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .alert .mdi {
    font-size: 30px;
  }
}
/* ---------------------------------- Dot ---------------------------------- */
.dot {
  color: transparent;
  font-size: 1px;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  margin: auto;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.dot.green {
  background-color: #46D191;
  box-shadow: 0 0 20px rgba(70, 209, 145, 0.4);
}
.dot.yellow {
  background-color: #ffc107;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}
.dot.red {
  background-color: #D94F04;
  box-shadow: 0 0 20px rgba(217, 79, 4, 0.4);
}
.dot.blue {
  background-color: #4c7cf0;
  box-shadow: 0 0 20px rgba(76, 124, 240, 0.4);
}
.dot.grey {
  background-color: #8b949e;
  box-shadow: 0 0 20px rgba(139, 148, 158, 0.4);
}
.dot.orange {
  background-color: #F29325;
  box-shadow: 0 0 20px rgba(242, 147, 37, 0.4);
}
.dot.black {
  background-color: #f0f6fc;
  box-shadow: 0 0 20px rgba(240, 246, 252, 0.4);
}
.dot::after {
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
  height: 60%;
  width: 40%;
  position: absolute;
  top: 4%;
  left: 15%;
  border-radius: 100%;
  transform: rotate(40deg);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.dot:hover {
  transform: scale(1.1);
}
.dot:hover::after {
  background-color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------- Datatable ---------------------------------- */
.dataTables_filter {
  color: #f0f6fc !important;
}
.dataTables_filter input[type=search] {
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 2px solid rgba(48, 54, 61, 0.8) !important;
  text-indent: 15px;
  line-height: 40px;
  height: 40px;
  color: #f0f6fc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dataTables_filter input[type=search]::-moz-placeholder {
  opacity: 1;
  color: #6e7681;
}
.dataTables_filter input[type=search]::placeholder {
  opacity: 1;
  color: #6e7681;
}
.dataTables_filter input[type=search]:focus {
  border-color: #5865f2 !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.95);
}
.dataTables_filter input[type=search]:hover {
  border-color: rgba(88, 101, 242, 0.6) !important;
}

.sorting_1 {
  background-color: rgba(22, 27, 34, 0.5) !important;
}

.odd {
  background-color: rgba(22, 27, 34, 0.3) !important;
}

.even {
  background-color: rgba(22, 27, 34, 0.1) !important;
}

/* ---------------------------------- Table Styling ---------------------------------- */
table {
  background: transparent;
  color: #f0f6fc;
}
table thead th {
  background: rgba(22, 27, 34, 0.8);
  color: #f0f6fc;
  border-bottom: 2px solid rgba(48, 54, 61, 0.8);
  padding: 12px 16px;
  font-weight: 600;
}
table tbody tr:nth-child(even) {
  background: rgba(22, 27, 34, 0.6);
}
table tbody tr:nth-child(odd) {
  background: rgba(22, 27, 34, 0.2);
}
table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.3);
  color: #f0f6fc;
}

.table {
  background: transparent;
  color: #f0f6fc;
}
.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(22, 27, 34, 0.6);
}
.table-striped tbody tr:nth-of-type(even) {
  background: rgba(22, 27, 34, 0.2);
}
.table th, .table td {
  border-color: rgba(48, 54, 61, 0.3);
  color: #f0f6fc;
}
.table thead th {
  background: rgba(22, 27, 34, 0.8);
  border-bottom: 2px solid rgba(48, 54, 61, 0.8);
  font-weight: 600;
}

/* ---------------------------------- Hover effect ---------------------------------- */
/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  padding: 8px 24px;
  font-size: 14px;
  border-radius: 12px;
  border-width: 2px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3);
}
.btn-primary {
  background: linear-gradient(135deg, #5865f2, #667eea);
  color: white;
  border-color: #5865f2;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: linear-gradient(135deg, #667eea, #5865f2);
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}
.btn-small {
  padding: 6px 20px;
  font-size: 12px;
}
.btn-selected {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
  border-color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}
.btn-link {
  color: #5865f2;
  background: none;
  border: none;
  padding: 4px 8px;
  text-decoration: none;
  font-weight: normal;
}
.btn-link:hover, .btn-link.active {
  text-decoration: none;
  color: #667eea;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.5);
  transform: none;
  box-shadow: none;
}
.btn-link:focus {
  box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3);
}

@media (max-width: 766px) {
  .btn {
    font-size: 13px;
    padding: 6px 16px;
  }
}
/* ---------------------------------- Form Input ---------------------------------- */
.form input {
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.form input:focus {
  color: #f0f6fc;
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.95);
}
.form input:hover {
  border-color: rgba(88, 101, 242, 0.6);
}

.FormInput {
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.FormInput:focus {
  color: #f0f6fc;
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.95);
}
.FormInput:hover {
  border-color: rgba(88, 101, 242, 0.6);
}

/* ---------------------------------- Input ---------------------------------- */
::-moz-placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}
::placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}

::-webkit-input-placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}

:-moz-placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}

::-moz-placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}

:-ms-input-placeholder {
  color: #6e7681 !important;
  opacity: 1 !important;
}

input[type=button], input[type=submit] {
  border-radius: 12px;
  background: linear-gradient(135deg, #5865f2, #667eea);
  color: white;
  border: none;
  padding: 12px 24px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
input[type=button]:hover, input[type=submit]:hover {
  background: linear-gradient(135deg, #667eea, #5865f2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

input[type=tel], input[type=email], input[type=number], input[type=text], input[type=password], input[type=search] {
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
input[type=tel]:focus, input[type=email]:focus, input[type=number]:focus, input[type=text]:focus, input[type=password]:focus, input[type=search]:focus {
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.95);
  outline: none;
}
input[type=tel]:hover, input[type=email]:hover, input[type=number]:hover, input[type=text]:hover, input[type=password]:hover, input[type=search]:hover {
  border-color: rgba(88, 101, 242, 0.6);
}
input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder {
  color: #6e7681;
  opacity: 1;
}
input[type=tel]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, input[type=text]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder {
  color: #6e7681;
  opacity: 1;
}
input[type=tel]:-webkit-autofill, input[type=email]:-webkit-autofill, input[type=number]:-webkit-autofill, input[type=text]:-webkit-autofill, input[type=password]:-webkit-autofill, input[type=search]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(22, 27, 34, 0.9) inset !important;
  -webkit-text-fill-color: #f0f6fc !important;
}
input[type=tel]:-webkit-autofill:focus, input[type=email]:-webkit-autofill:focus, input[type=number]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:focus, input[type=password]:-webkit-autofill:focus, input[type=search]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(22, 27, 34, 0.95) inset !important;
  -webkit-text-fill-color: #f0f6fc !important;
}

input.focus, input:focus, input.active.focus, input.active:focus, input:active.focus, input:active:focus, input.form-control:focus, .btn.focus, .btn:focus, .btn.active.focus, .btn.active:focus, .btn:active.focus, .btn:active:focus, .btn.form-control:focus {
  border-color: #5865f2;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2) !important;
}

.form-control {
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.form-control:focus {
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.95);
}
.form-control:hover {
  border-color: rgba(88, 101, 242, 0.6);
}
.form-control:disabled, .form-control[readonly] {
  background: rgba(22, 27, 34, 0.4) !important;
  color: #6e7681 !important;
  border-color: rgba(48, 54, 61, 0.5) !important;
  cursor: not-allowed;
  opacity: 0.7;
}

.input-group .form-control {
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  border-radius: 0 12px 12px 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-group .form-control:focus {
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}
.input-group .input-group-text {
  border-radius: 12px 0 0 12px !important;
  background: rgba(22, 27, 34, 0.9);
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  font-size: 12px;
}
.input-group .input-group-text .material-icons {
  font-size: 16px;
  color: #5865f2;
}

/* ---------------------------------- Checkbox ---------------------------------- */
input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: none !important;
  border: none !important;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 4px;
  background: rgba(22, 27, 34, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type=checkbox]::after {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 4px;
  transform: scale(0);
  font-size: 11px;
  color: white;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  line-height: 14px;
}
input[type=checkbox]:checked::before {
  background: linear-gradient(135deg, #5865f2, #667eea);
  border-color: #5865f2;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}
input[type=checkbox]:checked::after {
  transform: scale(1);
}
input[type=checkbox]:hover::before {
  border-color: #5865f2;
  box-shadow: 0 0 8px rgba(88, 101, 242, 0.2);
}
input[type=checkbox]:disabled::before {
  background: rgba(48, 54, 61, 0.3) !important;
  border-color: rgba(48, 54, 61, 0.8) !important;
  cursor: not-allowed;
}
input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3);
}

/* Override any remaining browser checkbox styles */
input[type=checkbox]::-webkit-outer-spin-button, input[type=checkbox]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox]::-moz-focus-inner {
  border: 0;
}

.checkbox label {
  font-size: 16px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox label input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}
.checkbox label:hover {
  color: #5865f2;
}

/* ---------------------------------- Radio ---------------------------------- */
input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type=radio]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 50%;
  background: rgba(22, 27, 34, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
input[type=radio]:checked::before {
  background: linear-gradient(135deg, #5865f2, #667eea);
  border-color: #5865f2;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}
input[type=radio]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
input[type=radio]:hover::before {
  border-color: #5865f2;
  box-shadow: 0 0 8px rgba(88, 101, 242, 0.2);
}
input[type=radio]:disabled::before {
  background: rgba(48, 54, 61, 0.3) !important;
  border-color: rgba(48, 54, 61, 0.8) !important;
  cursor: not-allowed;
}
input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3);
}

.radio label {
  font-size: 16px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.radio label input[type=radio] {
  margin: 0;
  cursor: pointer;
}
.radio label:hover {
  color: #5865f2;
}

/* ---------------------------------- Select ---------------------------------- */
select {
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
}
select:hover {
  border-color: rgba(88, 101, 242, 0.6);
}
select.focus, select:focus, select.active.focus, select.active:focus, select:active.focus, select:active:focus, select.form-control:focus {
  border-color: #5865f2;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2) !important;
}

.select2-container .select2-selection {
  height: 46px !important;
  background: rgba(22, 27, 34, 0.8) !important;
  border: 2px solid rgba(48, 54, 61, 0.8) !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.select2-container .select2-selection:hover {
  border-color: rgba(88, 101, 242, 0.6) !important;
}
.select2-container .select2-selection.select2-selection--single {
  padding: 8px 16px;
}
.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
  line-height: 28px !important;
  color: #f0f6fc !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
  top: 13px !important;
  transform: none !important;
  height: 20px !important;
  width: 20px !important;
  right: 10px !important;
}
.select2-container .select2-selection.select2-selection--single .select2-selection__arrow b {
  border-color: #f0f6fc transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.select2-container .select2-selection.select2-selection--multiple {
  background: rgba(22, 27, 34, 0.8) !important;
  padding: 4px 8px;
}
.select2-container .select2-selection.select2-selection--multiple .select2-selection__choice {
  background: rgba(88, 101, 242, 0.2) !important;
  border: 1px solid rgba(88, 101, 242, 0.4) !important;
  color: #f0f6fc !important;
  border-radius: 4px;
}
.select2-container.select2-container--focus .select2-selection, .select2-container.select2-container--open .select2-selection {
  border-color: #5865f2 !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
  background: rgba(22, 27, 34, 0.9) !important;
}

.select2-dropdown {
  background: rgba(22, 27, 34, 0.95) !important;
  border: 2px solid rgba(48, 54, 61, 0.8) !important;
  border-radius: 12px !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}
.select2-dropdown .select2-results {
  background: rgba(22, 27, 34, 0.95) !important;
}
.select2-dropdown .select2-results .select2-results__options {
  background: rgba(22, 27, 34, 0.95) !important;
  max-height: 200px;
}
.select2-dropdown .select2-results .select2-results__option {
  color: #f0f6fc !important;
  padding: 12px 16px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(22, 27, 34, 0.95) !important;
}
.select2-dropdown .select2-results .select2-results__option:hover, .select2-dropdown .select2-results .select2-results__option[aria-selected=true] {
  background: rgba(88, 101, 242, 0.1) !important;
  color: #5865f2 !important;
}
.select2-dropdown .select2-results .select2-results__option--highlighted {
  background: rgba(88, 101, 242, 0.15) !important;
  color: #5865f2 !important;
}
.select2-dropdown .select2-search {
  padding: 8px;
  background: rgba(22, 27, 34, 0.95) !important;
}
.select2-dropdown .select2-search .select2-search__field {
  background: rgba(22, 27, 34, 0.8) !important;
  border: 2px solid rgba(48, 54, 61, 0.8) !important;
  color: #f0f6fc !important;
  border-radius: 12px;
  padding: 8px 12px;
}
.select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #5865f2 !important;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}
.select2-dropdown .select2-search .select2-search__field::-moz-placeholder {
  color: #6e7681 !important;
}
.select2-dropdown .select2-search .select2-search__field::placeholder {
  color: #6e7681 !important;
}

.select2-selection__arrow {
  height: 46px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(#5865f2, #5865f2) !important;
  color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6e7681 !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #f0f6fc !important;
}

/* ---------------------------------- Login ---------------------------------- */
.login, .forgot {
  background: rgba(22, 27, 34, 0.95);
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 12px;
  margin-top: 60px;
  padding: 40px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.login-logo, .forgot-logo {
  margin: 15px 0;
  text-align: center;
}
.login-logo img, .forgot-logo img {
  max-width: 120px;
  margin: auto;
  filter: brightness(1.2);
}
.login-name, .forgot-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #5865f2;
  text-align: center;
  text-transform: uppercase;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.login h1, .forgot h1 {
  color: #f0f6fc;
  font-size: 14px;
  margin-top: 30px;
  font-weight: 700;
  text-align: left;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.login form, .forgot form {
  margin-top: 10px;
}
.login form input, .forgot form input {
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.login form input:focus, .forgot form input:focus {
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}
.login form .btn, .forgot form .btn {
  padding: 12px 30px;
  font-weight: 600;
  background: linear-gradient(135deg, #5865f2, #667eea);
  color: white;
  border: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 15px;
  margin-bottom: 10px;
}
.login form .btn:hover, .forgot form .btn:hover {
  background: linear-gradient(135deg, #667eea, #5865f2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}
.login form .btn:last-child, .forgot form .btn:last-child {
  margin-right: 0;
}
.login form .btn-link, .forgot form .btn-link {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 15px 10px 0 !important;
  color: #5865f2 !important;
  text-decoration: none;
  font-weight: normal;
  display: inline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.login form .btn-link:hover, .forgot form .btn-link:hover {
  color: #667eea !important;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.5);
  text-decoration: none;
  transform: none !important;
  box-shadow: none !important;
}
.login form .btn-link:focus, .forgot form .btn-link:focus {
  box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3) !important;
}
.login form .btn-link:last-child, .forgot form .btn-link:last-child {
  margin-right: 0 !important;
}

@media (max-width: 766px) {
  .login, .forgot {
    padding: 10px;
    border: none;
    margin-top: 0px;
  }
}
/* ---------------------------------- Header ---------------------------------- */
header {
  position: relative;
  z-index: 99;
  background: rgba(22, 27, 34, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 70px;
  border-bottom: 2px solid rgba(48, 54, 61, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: inline-block;
  padding-right: 40px;
  border-right: 2px solid rgba(48, 54, 61, 0.8);
}
header .title {
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}
header .name {
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
  color: #f0f6fc;
}
header .name-text {
  display: inline-block;
  vertical-align: middle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
header .name-icon {
  display: inline-block;
  vertical-align: middle;
}
header .dropdown {
  display: inline-block;
  cursor: pointer;
  margin: 0;
}
header .dropdown-menu {
  background: rgba(22, 27, 34, 0.95);
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
}
header .dropdown-menu .dropdown-item {
  color: #f0f6fc;
  padding: 8px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
header .dropdown-menu .dropdown-item:hover, header .dropdown-menu .dropdown-item:active {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
}
header .dropdown-item {
  font-size: 14px;
  color: #f0f6fc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header .dropdown-item:hover, header .dropdown-item:active {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
}
header .dropdown .btn-link {
  color: #8b949e;
  padding: 0;
  margin-top: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header .dropdown .btn-link:hover {
  color: #5865f2;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.5);
}
header .dropdown-toggle.noarrow .mdi {
  font-size: 30px;
  color: #5865f2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header .dropdown-toggle.noarrow:hover .mdi {
  color: #667eea;
  filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
}
header .dropdown .mdi {
  width: 18px;
  height: 22px;
}

@media (max-width: 766px) {
  header .name {
    text-align: right;
  }
}
/* ---------------------------------- Main ---------------------------------- */
main {
  margin-top: 20px;
  min-height: calc(100vh - 235px);
}

.mdi-pencil {
  color: #5865f2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mdi-pencil:hover {
  color: #667eea;
  filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
}

/* ---------------------------------- Modal ---------------------------------- */
.modal form {
  margin-top: 10px;
}
.modal form input {
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  color: #f0f6fc;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal form input:focus {
  border-color: #5865f2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}
.modal-body {
  padding-top: 30px;
}
.modal-body-nopad {
  padding-top: 0 !important;
}
.modal-content {
  padding-top: 20px;
  font-size: 14px;
  background: rgba(22, 27, 34, 0.95);
  border: 2px solid rgba(48, 54, 61, 0.8) !important;
  color: #f0f6fc !important;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.modal-content .close {
  position: absolute;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 99;
  top: -25px;
  right: -25px;
  background: rgba(22, 27, 34, 0.9);
  color: #f0f6fc;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid rgba(48, 54, 61, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-content .close:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border-color: #ff6b6b;
  transform: scale(1.1);
}
.modal-content h3 {
  font-size: 20px;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
}
.modal-footer {
  border-radius: 0;
  background: rgba(22, 27, 34, 0.8) !important;
  border: 2px solid rgba(48, 54, 61, 0.8);
}
.modal-footer .btn-link {
  color: #5865f2;
  padding: 0;
  margin-right: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}
.modal-footer .btn-link:hover {
  text-decoration: underline;
  color: #667eea;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.5);
}
.modal-welcome .modal-content {
  border-color: rgba(48, 54, 61, 0.8) !important;
  padding: 30px;
}
.modal-welcome .modal-content h1 {
  margin-bottom: 30px;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.modal-welcome .modal-content .button {
  text-align: center;
}

@media (max-width: 766px) {
  .modal-body {
    padding-top: 10px;
  }
}
/* ---------------------------------- Card tile ---------------------------------- */
.card {
  margin-top: 30px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #f0f6fc;
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.card:hover {
  transform: scale(1.025) translateY(-5px);
  box-shadow: 0 15px 35px rgba(88, 101, 242, 0.2);
  border-color: #5865f2;
}
.card:hover .card-next {
  opacity: 0.8;
  transform: scale(1.1);
}
.card-watermark {
  position: absolute;
  right: -100px;
  bottom: -180px;
  font-size: 300px;
  opacity: 0.03;
  transform: rotate(-25deg);
  color: #5865f2;
}
.card-media {
  font-size: 80px;
  color: #5865f2;
  margin-bottom: 20px;
}
.card-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #f0f6fc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.card-text {
  font-size: 1rem;
  margin-bottom: 0;
  color: #8b949e;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.card-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.card-next {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #5865f2;
  border-radius: 50%;
  line-height: 1;
  padding: 0.5rem;
  background: rgba(88, 101, 242, 0.1);
  border: 2px solid rgba(88, 101, 242, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-next i {
  font-size: 1.5rem;
  color: #5865f2;
}
.card-next:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: #5865f2;
}

/* ---------------------------------- Helper ---------------------------------- */
.helper {
  color: #8b949e;
  font-size: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  opacity: 0.8;
}

/* ---------------------------------- Breadcrumb ---------------------------------- */
.breadcrumb {
  color: #f0f6fc;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid rgba(48, 54, 61, 0.8);
  padding: 0 0 20px 0;
  background: transparent;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.breadcrumb a {
  color: #5865f2;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a:hover {
  text-decoration: none;
  color: #667eea;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.5);
}
.breadcrumb .active {
  color: #f0f6fc;
}

/* ---------------------------------- Footer ----------------------------------  */
footer {
  font-size: 12px;
  color: #f0f6fc;
  padding: 60px 0 20px 0;
}
footer .header {
  font-size: 20px;
  font-weight: 600;
  color: #f0f6fc;
}
footer .logo {
  display: inline-table;
  vertical-align: middle;
}
footer .logo img {
  max-width: 80px;
}
footer .name {
  display: inline-table;
  vertical-align: middle;
  margin-left: 30px;
  color: #f0f6fc;
  font-size: 17px;
  font-weight: 600;
}
footer hr {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
footer ul {
  margin: 0;
  font-size: 14px;
}
footer ul li {
  padding-bottom: 5px;
}
footer ul li a, footer ul li a:hover {
  color: #f0f6fc;
}

@media (max-width: 766px) {
  footer {
    padding-top: 30px;
  }
  footer ul {
    margin-top: 20px;
    padding-left: 15px;
  }
  footer ul li {
    margin-left: 0px;
    padding-bottom: 5px;
  }
  footer ul li a, footer ul li a:hover {
    color: #5865f2;
  }
}