@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* ── Align Wellness — branded sign-in (mirrors the public site) ──────────
   navy #27475A · sage #8D9C84 · sage-deep #6D8458 · slate #314754 */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #27475a;
}

.lp {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────────────────── */
.lp-header {
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 14px 0;
}
.lp-header-inner {
    width: 92%;
    max-width: 1450px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-logo {
    height: 60px;
    width: auto;
    display: block;
}
.lp-book {
    background: #8b9a80;
    color: #fff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .2s ease;
}
.lp-book:hover { background: #7c8c73; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.lp-hero {
    flex: 1;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
        url('/branding/hero.jpg') center center / cover no-repeat;
}
.lp-hero-inner {
    width: 92%;
    max-width: 1450px;
    margin: auto;
    padding: 56px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

/* hero copy (left) */
.lp-copy { max-width: 560px; flex: 1 1 380px; }
.lp-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7f8d74;
    margin-bottom: 22px;
}
.lp-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    line-height: 1.02;
    font-weight: 400;
    color: #27475a;
    margin-bottom: 24px;
}
.lp-divider {
    width: 200px;
    height: 2px;
    background: #a5b29a;
    margin-bottom: 26px;
}
.lp-tagline {
    font-size: 19px;
    line-height: 1.7;
    color: #314754;
    max-width: 500px;
}

/* sign-in card (right) */
.lp-card {
    flex: 0 1 400px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e7eae2;
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 30px 70px rgba(39, 71, 90, 0.18);
    backdrop-filter: blur(2px);
}
.lp-card h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #27475a;
    margin-bottom: 4px;
}
.lp-card-lead {
    font-size: 14px;
    color: #6c7e72;
    margin-bottom: 22px;
}

.lp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #7c8a80;
    margin: 14px 0 6px;
}
.lp-input {
    width: 100%;
    border: 1px solid #d7ddd2;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 15px;
    color: #27475a;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-input:focus {
    outline: none;
    border-color: #8d9c84;
    box-shadow: 0 0 0 4px rgba(141, 156, 132, 0.18);
}
.lp-input::placeholder { color: #aab3a6; }

.lp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0 22px;
    font-size: 13px;
}
.lp-remember {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5f7166;
    cursor: pointer;
}
.lp-remember input { accent-color: #8d9c84; width: 15px; height: 15px; }
.lp-forgot { color: #6d8458; text-decoration: none; font-weight: 600; }
.lp-forgot:hover { text-decoration: underline; }

.lp-signin {
    width: 100%;
    border: 0;
    border-radius: 30px;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #27475a;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}
.lp-signin:hover { background: #1f3a48; transform: translateY(-1px); }

.lp-errors, .lp-field-error { color: #b44d4d; font-size: 13px; display: block; }
.lp-errors:not(:empty) { margin-bottom: 10px; }
.lp-field-error { margin-top: 4px; }

/* ── Footer strip ───────────────────────────────────────────────────── */
.lp-footer {
    background: #95a083;
    color: #fff;
    padding: 16px 0;
    font-size: 13px;
    letter-spacing: 1px;
}
.lp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 4%;
    padding-right: 4%;
}
.lp-footer-left { flex: 1; }
.lp-footer-center { flex: 2; text-align: center; text-transform: uppercase; }
.lp-footer-right { flex: 1; text-align: right; letter-spacing: 4px; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-hero-inner { flex-direction: column; align-items: stretch; }
    .lp-copy { max-width: none; }
    .lp-headline { font-size: 56px; }
    .lp-card { flex-basis: auto; max-width: 460px; }
}
@media (max-width: 640px) {
    .lp-headline { font-size: 44px; }
    .lp-tagline { font-size: 17px; }
    .lp-header-inner { flex-direction: column; gap: 14px; }
    .lp-footer { flex-direction: column; text-align: center; }
    .lp-footer-left, .lp-footer-center, .lp-footer-right { text-align: center; flex: none; }
}
