*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Mulish", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #2b3a44;
  background: #f4f7fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #1e97d6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  color: #197eb2;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(43, 58, 68, 0.06);
  padding: 1.1rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c9d0;
  letter-spacing: -0.01em;
}

.lang-switcher {
  display: inline-flex;
  gap: 0.4rem;
}
.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0.25rem;
  border: 1px solid #dbe2e8;
  background: #fff;
  color: #2b3a44;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lang-switcher .lang-btn:hover {
  border-color: #c2ced8;
}
.lang-switcher .lang-btn.is-active {
  background: #1e97d6;
  border-color: #1e97d6;
  color: #fff;
}

.main {
  flex: 1 0 auto;
  padding: 3rem 0 5rem 0;
}

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.page-title {
  font-family: "Nunito Sans", "Mulish", "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  font-size: 65px;
  font-weight: 700;
  color: #22c9d0;
  margin: 3rem 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.page-title .accent {
  color: #1e97d6;
}

.mockup {
  width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(30, 60, 90, 0.08), 0 2px 6px rgba(30, 60, 90, 0.04);
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0.2, 0.3, 1), box-shadow 0.25s cubic-bezier(0.4, 0.2, 0.3, 1);
}
.mockup:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 16px 36px rgba(30, 60, 90, 0.13), 0 3px 10px rgba(30, 60, 90, 0.11);
}

.mockup:first-child {
  transform: rotate(-6deg);
  z-index: 2;
}

.mockup:last-child {
  width: 28%;
  margin-top: 30px;
  margin-left: -15px;
  transform: rotate(7deg);
}

.form-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(30, 60, 90, 0.08), 0 2px 6px rgba(30, 60, 90, 0.04);
  padding: 2.25rem 2.5rem 2rem;
}

.form-section-label {
  font-size: 1rem;
  font-weight: 700;
  color: #2b3a44;
  margin-bottom: 0.55rem;
}

.required-mark {
  color: #2b3a44;
  margin-left: 1px;
}

.form-label {
  font-weight: 600;
  color: #1e97d6;
  margin-bottom: 0.35rem;
}

.consent-text {
  font-size: 0.95rem;
  color: #2b3a44;
  line-height: 1.5;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.95rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #2b3a44;
  background: #fff;
  border: 1px solid #dbe2e8;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control::placeholder {
  color: #9ca6af;
}
.form-control:focus {
  outline: 0;
  border-color: #1e97d6;
  box-shadow: 0 0 0 0.18rem rgba(30, 151, 214, 0.18);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
  margin-bottom: 0.4rem;
}
.form-check .form-check-input {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.18rem 0 0 0;
  border: 1px solid #dbe2e8;
  border-radius: 0.25rem;
  background: #fff;
  appearance: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.form-check .form-check-input:checked {
  background-color: #1e97d6;
  border-color: #1e97d6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M12.2 5.3 6.7 10.8 3.8 7.9l-1.1 1.1 4 4 6.6-6.6z'/%3E%3C/svg%3E");
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.form-check .form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.18rem rgba(30, 151, 214, 0.18);
}
.form-check .form-check-label {
  cursor: pointer;
  color: #2b3a44;
  line-height: 1.45;
}
.form-check.form-switch {
  align-items: flex-start;
}
.form-check.form-switch .form-check-input {
  width: 2.5rem;
  height: 1.4rem;
  border-radius: 1rem;
  background: #e2e6ec;
  border-color: #e2e6ec;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  transition: background-position 0.15s, background-color 0.15s;
}
.form-check.form-switch .form-check-input:checked {
  background-color: #22c9d0;
  border-color: #22c9d0;
  background-position: right center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.05s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #1e97d6;
  border-color: #1e97d6;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 151, 214, 0.25);
}
.btn-primary:hover {
  background: #f7c948;
  border-color: #f7c948;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(247, 201, 72, 0.25);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 151, 214, 0.25);
  outline: 0;
}

.btn-secondary {
  background: #1e97d6;
  border-color: #1e97d6;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 151, 214, 0.25);
}
.btn-secondary:hover {
  background: #f7c948;
  border-color: #f7c948;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(247, 201, 72, 0.25);
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 151, 214, 0.25);
  outline: 0;
}

.btn-outline-primary {
  background: transparent;
  border-color: #1e97d6;
  color: #1e97d6;
  box-shadow: 0 4px 14px rgba(30, 151, 214, 0.25);
}
.btn-outline-primary:hover {
  background: #f7c948;
  border-color: #1e97d6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 151, 214, 0.25);
}
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 151, 214, 0.25);
  outline: 0;
}

.required-note {
  color: #6b7884;
  font-size: 0.9rem;
  margin: 1.25rem 0 1.25rem;
}

.consent-text {
  font-size: 0.95rem;
  color: #2b3a44;
  line-height: 1.5;
}

.admin-page .admin-title {
  color: #22c9d0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.admin-page .admin-login-col .admin-login-card {
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(30, 60, 90, 0.08), 0 2px 6px rgba(30, 60, 90, 0.04);
  overflow: hidden;
  background: #ffffff;
}
.admin-page .admin-login-col .admin-login-card-body {
  padding: 2rem 2.25rem !important;
}
.admin-page .admin-login-col .admin-login-form .form-label {
  color: #1e97d6;
}
.admin-page .admin-login-col .admin-login-btn {
  width: 100%;
  margin-top: 0.25rem;
}
.admin-page .admin-orders-header {
  padding: 0.35rem 0 0.5rem;
  margin-bottom: 1rem !important;
}
.admin-page .admin-logout-btn {
  border-radius: 999px;
  border-color: #dbe2e8;
  color: #2b3a44;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}
.admin-page .admin-logout-btn:hover {
  border-color: #1e97d6;
  color: #1e97d6;
  background: #fff;
}
.admin-page .admin-table-wrap {
  background: #ffffff;
  border: 1px solid #dbe2e8;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(30, 60, 90, 0.06);
  padding: 2rem;
}
.admin-page .admin-orders-table {
  margin-bottom: 0;
  font-size: 0.88rem;
  border-color: #dbe2e8;
}
.admin-page .admin-orders-table thead th {
  color: #1e97d6;
  background: rgba(30, 151, 214, 0.05);
  border-color: #dbe2e8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.55rem 0.6rem;
  line-height: 1.25;
}
.admin-page .admin-orders-table tbody td {
  vertical-align: middle;
  border-color: #dbe2e8;
  padding: 0.5rem 0.6rem;
  line-height: 1.35;
}
.admin-page .admin-orders-table tbody tr:nth-child(even) {
  background: rgba(30, 151, 214, 0.02);
}
.admin-page .admin-orders-table tbody tr:hover {
  background: rgba(34, 201, 208, 0.08);
}

.site-footer {
  background: #1e97d6;
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 0;
  margin-top: 5rem;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer .copyright {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 575.98px) {
  .site-header .container {
    flex-wrap: wrap;
  }
  .site-header .site-title {
    font-size: 1.2rem;
  }
  .main {
    padding: 1.75rem 0 2.5rem;
  }
  .page-title {
    font-size: 36px;
    margin-bottom: 1.25rem;
  }
  .form-card {
    padding: 1.5rem 1.25rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .admin-page .admin-orders-header {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.dtsp-searchIcon {
  border-radius: 0 !important;
}

.dt-buttons {
  margin-top: 1rem;
}

.rounded-pill {
  background-color: #1e97d6 !important;
}

#select-lang {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#select-lang .img-fluid {
  max-width: 100%;
  height: auto;
}

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