﻿:root {
  --bg: #eef3fb;
  --primary: #0d5dff;
  --primary-dark: #0b4bd4;
  --card: #ffffff;
  --text: #1c2430;
  --muted: #6f7a8a;
  --stroke: #d7deea;
  --shadow: 0 18px 50px rgba(13, 93, 255, 0.15);
  --radius: 18px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(13,93,255,0.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(13,93,255,0.06), transparent 35%),
              var(--bg);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.brand {
  text-align: center;
  margin-bottom: 28px;
}

.brand-icon {
  width: 160px;
  margin: 0 auto 12px;
}

.brand-icon img { width: 100%; height: auto; display: block; }

.brand-subtitle {
  color: var(--muted);
  font-size: 15px;
}

.card {
  width: min(420px, 100%);
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 222, 234, 0.6);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.field {
  position: relative;
  margin-bottom: 18px;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 44px;
  border: 1.5px solid var(--stroke);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  background: #f8fbff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 93, 255, 0.15);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  pointer-events: none;
}

.field-icon svg { width: 18px; height: 18px; }

button#submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  box-shadow: 0 10px 25px rgba(13, 93, 255, 0.25);
}

button#submit:hover { transform: translateY(-1px); }
button#submit:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(13,93,255,0.22); }

.footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@keyframes animatezoom {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.animate { animation: animatezoom 0.45s ease; }

@media (max-width: 480px) {
  .card { padding: 22px; }
}

