:root {
    --bg: #120b08;
    --line: rgba(236, 193, 118, 0.34);
    --text: #f3e6c7;
    --gold: #e3c48a;
    --error: #f5a7a7;
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    color: var(--text);
    background:
      radial-gradient(1200px 540px at 50% -14%, rgba(248, 182, 93, 0.14), transparent 70%),
      linear-gradient(180deg, rgba(8, 5, 3, 0.22), rgba(8, 5, 3, 0.86)),
      url("/Images/contruct.webp") center/cover no-repeat fixed,
      var(--bg);
    padding: 0.8rem;
  }
  .card {
    width: min(460px, 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.1rem;
    background: linear-gradient(180deg, rgba(33, 18, 12, 0.92), rgba(20, 12, 8, 0.96));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  }
  h1 {
    margin: 0 0 0.8rem;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.25rem;
  }
  p {
    margin: 0 0 0.7rem;
    color: #ead9b5;
    line-height: 1.4;
  }
  label {
    display: block;
    margin-bottom: 0.3rem;
    color: #d8bf92;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  input {
    width: 100%;
    border: 1px solid var(--line);
    background: #140c09;
    color: var(--text);
    border-radius: 10px;
    padding: 0.68rem 0.76rem;
    font-size: 1rem;
  }
  .error {
    margin-top: 0.58rem;
    color: var(--error);
    font-size: 0.93rem;
  }
  .actions {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.55rem;
  }
  button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: linear-gradient(180deg, rgba(66, 43, 23, 0.9), rgba(33, 20, 12, 0.92));
    color: #ffdf9e;
    cursor: pointer;
    font-size: 0.92rem;
    font-family: "Cinzel", Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
