html {
    --page-padding: 16px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    background: url('/images/background.svg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    padding: var(--page-padding);
    color: #111827;
}

hr {
    margin-top: 16px; margin-bottom: 16px;
    border: 0;
    height: 1px;
    background: #999;
}

.content {
    min-width: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.logo-box a {
    text-decoration: none;
    font-weight: bold;
    color: #666;
}

.logo-box {
    text-align: center;
}

.info-box p {
    margin-top: 2px;
}

.link-box {
    text-align: center;
    color: #999;
}

.link-box a {
    text-decoration: none;
}

.cta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:.5rem;
  
    width:100%;
    margin-top:12px;
  
    padding:12px 14px;
    border-radius:10px;
  
    background: #1D4ED8;          /* primary */
    color:#fff;
    text-decoration:none;
  
    font-weight:600;
    font-size:14px;
    line-height:1;
  
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  }
  
  .cta:hover{
    background:#1E40AF;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.22);
  }
  
  .cta:active{ transform: translateY(0px); }
  
.cta:focus-visible{
    outline: 3px solid rgba(59,130,246,.45);
    outline-offset: 2px;
  }

.content.content-wide {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: min(100%, 720px);
    max-width: 720px;
    margin: 48px auto 64px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
}

.page-shell {
    min-height: calc(100vh - (var(--page-padding) * 2));
    display: flex;
    align-items: flex-start;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.lead {
    color: #1f2937;
    line-height: 1.5;
    font-size: 16px;
}

.note {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.muted {
    color: #666;
    font-size: 12px;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-panel {
    margin-bottom: 18px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.04));
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.hero-panel-danger {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1), rgba(239, 68, 68, 0.04));
    border-color: rgba(239, 68, 68, 0.18);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eyebrow {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.12);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow-danger {
    background: rgba(185, 28, 28, 0.12);
    color: #b91c1c;
}

.feature-list {
    display: grid;
    gap: 10px;
    color: #334155;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1d4ed8;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #222;
    font-weight: 600;
}

.text-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: #111827;
    background: rgba(255, 255, 255, 0.95);
    transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}

.text-input:focus {
    outline: 3px solid rgba(59,130,246,.18);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12);
    transform: translateY(-1px);
}

.text-area {
    resize: vertical;
    min-height: 140px;
}

.cta-button {
    border: 0;
    cursor: pointer;
    margin-top: 0;
}

.danger-button {
    background: #b91c1c;
}

.danger-button:hover {
    background: #991b1b;
}

.secondary-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #1f2937;
    background: #e5e7eb;
    transition: background-color .12s ease, transform .12s ease;
}

.secondary-cta:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-panel {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.form-note {
    color: #475569;
    line-height: 1.6;
}

.action-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
    .content.content-wide {
        margin: 20px auto 32px;
        padding: 18px;
    }

    .page-shell {
        display: block;
    }

    .page-title {
        font-size: 26px;
    }

    .form-grid,
    .action-row {
        grid-template-columns: 1fr;
    }
}
