
:root {
    --bg: #f6f8fb;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --border: #cbd5e1;
    --shadow: 0 10px 30px rgba(2, 8, 23, .10);
    --primary: #2D5BBA;
    --primaryHover: #244c9b;
    --focus: rgba(45, 91, 186, .18);
    --radius: 16px;
}

/* Page container */
.wl-page {
    background: var(--bg);
    min-height: calc(100vh - 0px);
    padding: 42px 16px 70px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
}

.wl-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.wl-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: start;
}

/* Card */
.wl-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(203,213,225,.55);
}

.wl-card-body {
    padding: 28px;
}

/* Header */
.wl-title {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.wl-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
}

.wl-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #1e293b;
    background: rgba(45,91,186,.08);
    border: 1px solid rgba(45,91,186,.20);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
}

/* Form */
.wl-form {
    margin-top: 10px;
}

.wl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wl-field {
    margin-top: 12px;
}

.wl-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 6px;
}

.wl-input,
.wl-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 14px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease;
}

    .wl-input::placeholder,
    .wl-textarea::placeholder {
        color: #94a3b8;
    }

    .wl-input:focus,
    .wl-textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 5px var(--focus);
    }

.wl-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.wl-help {
    margin-top: 8px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.wl-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.wl-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .06s ease, background .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 220px;
}

    .wl-btn:hover {
        background: var(--primaryHover);
    }

    .wl-btn:active {
        transform: translateY(1px);
    }

.wl-privacy {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    max-width: 70ch;
}

    .wl-privacy a {
        color: #475569;
        text-decoration: underline;
        font-weight: 700;
    }

/* Right-side info panel */
.wl-side {
    background: linear-gradient(180deg, rgba(45,91,186,.10), rgba(45,91,186,.00));
    border: 1px solid rgba(45,91,186,.18);
    border-radius: var(--radius);
    padding: 22px;
}

    .wl-side h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 800;
    }

    .wl-side p {
        margin: 0 0 14px;
        color: var(--muted);
        line-height: 1.6;
        font-size: 14px;
    }

.wl-bullets {
    margin: 0;
    padding-left: 18px;
    color: #334155;
    font-size: 14px;
    line-height: 1.75;
}

    .wl-bullets li {
        margin: 6px 0;
    }

.wl-note {
    margin-top: 14px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(203,213,225,.7);
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .wl-grid {
        grid-template-columns: 1fr;
    }

    .wl-title {
        font-size: 38px;
    }

    .wl-card-body {
        padding: 22px;
    }
}

@media (max-width: 520px) {
    .wl-row {
        grid-template-columns: 1fr;
    }

    .wl-title {
        font-size: 34px;
    }

    .wl-btn {
        width: 100%;
        min-width: 0;
    }
}


