/* ======================================================
   ULTRA — LOGIN CSS (FINAL, CLEAN)
   File: /public/css/quote-css.css
   Scope: LOGIN ONLY (no app shell)
   ====================================================== */

   :root{
    --orange:#f26722;
  
    --bg-dark:#0b0b0c;
    --surface-1:#111214;
  
    --border:rgba(255,255,255,0.10);
  
    --text-main:#e9e9ea;
    --text-muted:rgba(233,233,234,0.65);
    --text-soft:rgba(233,233,234,0.45);
  
    --radius-md:10px;
    --radius-lg:14px;
  }
  
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  
  html{
    background:var(--bg-dark);
    color-scheme:dark;
    text-rendering:geometricPrecision;
  }
  
  body{
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",
                 Roboto,Helvetica,Arial,sans-serif;
    background:var(--bg-dark);
    color:var(--text-main);
    line-height:1.35;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  
  input,button{
    font-family:inherit;
    font-size:13px;
    outline:none;
  }
  
  input::placeholder{ color:var(--text-soft); }
  
  :focus-visible{
    outline:2px solid rgba(242,103,34,0.65);
    outline-offset:2px;
  }
  
  /* =========================
     PAGE LAYOUT
     ========================= */
  .page{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:28px 16px;
    gap:10px;
  }
  
  /* ambient glow */
  .page::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(760px 360px at 22% 12%, rgba(242,103,34,0.10), transparent 60%),
      radial-gradient(900px 520px at 78% 18%, rgba(255,255,255,0.06), transparent 55%),
      radial-gradient(1200px 720px at 50% 115%, rgba(0,0,0,0.65), transparent 55%);
  }
  
  /* =========================
     LOGIN CARD
     ========================= */
  .card{
    width:min(560px,100%);
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    background:#111216;
    box-shadow:0 18px 60px rgba(0,0,0,0.55);
    padding:22px 22px 16px;
    position:relative;
    overflow:hidden;
  }
  
  .card::before{
    content:"";
    position:absolute;
    inset:-2px;
    pointer-events:none;
    background:radial-gradient(620px 220px at 28% 0%, rgba(242,103,34,0.14), transparent 55%);
  }
  
  /* =========================
     CONTENT
     ========================= */
  .logo{
    width:220px;
    opacity:0.95;
    margin:2px 0 10px;
  }
  
  .title{
    margin:0;
    font-size:18px;
    font-weight:900;
    letter-spacing:0.2px;
  }
  
  .sub{
    margin:10px 0 14px;
    font-size:13px;
    color:var(--text-muted);
  }
  
  /* =========================
     FORM
     ========================= */
  .form{
    display:grid;
    gap:10px;
  }
  
  .field{
    height:44px;
    padding:0 12px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.12);
    background:#0b0b0c;
    color:rgba(233,233,234,0.95);
  }
  
  .field:focus{
    border-color:rgba(242,103,34,0.35);
  }
  
  /* =========================
     SUBMIT BUTTON
     ========================= */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 16px;
    border-radius:var(--radius-md);
    border:1px solid rgba(242,103,34,0.35);
    background:var(--orange);
    color:#fff;
    font-weight:900;
    font-size:13px;
    letter-spacing:0.4px;
    cursor:pointer;
    white-space:nowrap;
  
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
  }
  
  button.btn::-moz-focus-inner{
    border:0;
    padding:0;
  }
  
  .btn:hover{ filter:brightness(1.03); }
  .btn:active{ transform:translateY(0.5px); }
  
  /* =========================
     RECOVERY
     ========================= */
  .recover{
    margin-top:12px;
    font-size:13px;
    color:var(--text-muted);
  }
  
  .orange-link{
    color:rgba(242,103,34,0.95);
    font-weight:900;
  }
  
  .orange-link:hover{
    text-decoration:underline;
  }
  
  /* =========================
     FOOTER TEXT
     ========================= */
  .footer-copy{
    width:min(560px,100%);
    margin-top:4px;
    text-align:center;
    font-size:12px;
    line-height:1.45;
    color:rgba(233,233,234,0.55);
  }
  
  /* =========================
     MOBILE
     ========================= */
  @media (max-width:560px){
    .card{ padding:18px 16px 14px; }
    .logo{ width:190px; }
    .btn{ width:100%; }
  }
  