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

[x-cloak] {
  display: none !important;
}

body,
html {
  width: 100%;
  height: 100%;
}

:root {
  color-scheme: light;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #bbd09f;
  color: #212121;
  --success: #00be65;
  --error: #be0000;
  color: #000d2a;
}

body {
  margin: 0;
  padding: 0;
}

.transparent body {
  background-color: transparent;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.p {
  padding: 10px
}


.site-header {
  background: linear-gradient(135deg, #07173d, #1b3a73);
  color: #fff;
  padding: 1.25rem 0;
  box-shadow: 0 12px 32px rgba(7, 23, 61, 0.22);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nav-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0.5rem;
}

main,
.container {
  max-width: 1080px;
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 1rem;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  background: #1b3a73;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.secondary {
  background: #c6e797;
  color: #606b50;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(27, 58, 115, 0.25);
}

.field {
  display: flex;
  flex-direction: column;
}

.field.inline {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.fieldset,
.flex {
  display: flex;
}

.field.half {
  width: 40%;
  flex: 1
}

label.inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #000d2a;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
  border: 1px solid #f0ffdc;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ccdbb7;
  color: #000d2a;
}

input:focus,
textarea:focus {
  border-color: #1b3a73;
  box-shadow: 0 0 0 3px rgba(27, 58, 115, 0.2);
  outline: none;
}

textarea {
  resize: vertical;
}

.required label::after {
  content: '*';
  color: #d93025;
}

.required label.inline::after {
  content: '*';
  color: #d93025;
  margin: 0 0 0 -5px
}

.tocen {
  text-align: center;
  font-size: 0;
  position: relative;
  overflow: auto;
  overflow-x: hidden
}

.tocen.fullscreen {
  width: 100%;
  height: 100%;
}

.tocen:before {
  content: ' ';
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 0
}

.cen {
  display: inline-block;
  font-size: 16px;
  max-width: 99.9%;
  vertical-align: middle;
  cursor: default;
  text-align: initial;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: relative;
  z-index: 60
}

fieldset {
  padding: 10px 20px 20px 20px;
  border-radius: 10px;
  border: 1px solid #bbbbbb;
}