* {
  box-sizing: border-box;
}

:root {
  --primary: #0568b7;
  --primary-dark: #034f92;
  --text: #1d2b3a;
  --muted: #667789;
  --border: rgba(5, 104, 183, 0.18);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 142, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0, 91, 170, 0.16), transparent 28%),
    linear-gradient(135deg, #eaf6ff 0%, #ffffff 48%, #dcefff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 104, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 104, 183, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(5, 104, 183, 0.18), transparent 65%);
  z-index: -1;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: 100%;
  max-width: 560px;
  text-align: center;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(5, 104, 183, 0.10);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand h1 {
  margin: 4px 0 0;
  font-size: 30px;
  color: var(--primary-dark);
  line-height: 1.1;
  text-align: center;
}

.brand-subtitle {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #667789;
    text-align: center;
    letter-spacing: .5px;
}

.hero-text {
    max-width: 100%;
    margin: 22px auto 0;
    padding: 18px 22px;

    background: #eef7ff;
    border-left: 6px solid #0875d1;
    border-radius: 18px;

    color: #2d4359;
    font-size: 15px;
    line-height: 1.7;

    box-shadow: 0 8px 20px rgba(8,117,209,.08);
}

.card {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 65, 130, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #42b7ff, var(--primary-dark));
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

label {
  font-size: 14px;
  font-weight: bold;
  color: #24384c;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4e2ef;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  outline: none;
  background: rgba(251, 253, 255, 0.95);
  color: var(--text);
  transition: 0.2s ease;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(5, 104, 183, 0.12);
  background: #ffffff;
}

small {
  font-size: 12px;
  color: #697887;
  line-height: 1.45;
}

button {
  margin-top: 8px;
  border: none;
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 12px 25px rgba(5, 104, 183, 0.24);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(5, 104, 183, 0.32);
}

.footer {
  width: 100%;
  max-width: 560px;
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #5f7286;
  line-height: 1.6;
}

@media (max-width: 520px) {

  .page {
    padding: 18px 12px;
  }

  .hero {
    margin-bottom: 12px;
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

.logo {
  width: 180px;
  height: auto;
}

  .brand h1 {
    font-size: 25px;
    text-align: center;
  }

  .brand-subtitle {
    font-size: 12px;
    text-align: center;
  }

  .hero-text {
    margin-top: 14px;
    padding: 15px 18px;
    font-size: 13px;
  }

  .card {
    padding: 20px;
    border-radius: 20px;
  }

}
