﻿/* ===================================================================
   OTT Auth Pages — Shared Stylesheet
   HTML5 + Bootstrap 4 · Roboto font · No inline styles
   =================================================================== */

/* ------------------------------------------------------------------
   1. Brand Tokens
   ------------------------------------------------------------------ */
:root {
    --ott-pink: #dd0877;
    --ott-pink-dark: #c91472;
    --ott-pink-light: #fff0f8;
    --ott-purple: #502ca9;
    --ott-purple-mid: #6b35b8;
    --ott-purple-light: #8f52d4;
    --ott-purple-soft: #f2edff;
    --ott-ink: #17172f;
    --ott-muted: #606277;
    --ott-muted-light: #9094b0;
    --ott-line: #dfe2ec;
    --ott-bg: #f8f8f9;
    --ott-white: #ffffff;
    --ott-green: #12a977;
    --ott-yellow: #f9d147;
    --ott-shadow-sm: 0 2px 8px rgba(23,23,47,.08);
    --ott-shadow-md: 0 8px 28px rgba(23,23,47,.13);
    --ott-shadow-lg: 0 20px 50px rgba(23,23,47,.18);
    --ott-radius: 12px;
    --ott-radius-lg: 16px;
    --hero-gradient: linear-gradient(135deg, #30156e 0%, #4b2aa0 45%, #7248c8 100%);
}

/* ------------------------------------------------------------------
   2. Base
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    color: var(--ott-ink);
    background: var(--ott-bg);
    font-size: 0.9375rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: var(--ott-pink);
    transition: color 0.15s;
}

    a:hover {
        color: var(--ott-pink-dark);
        text-decoration: none;
    }

button[disabled] {
    opacity: 0.5;
}

/* ------------------------------------------------------------------
   3. OTT Logo
   ------------------------------------------------------------------ */
.ott-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

    .ott-logo:hover {
        text-decoration: none;
    }

.ott-logo__mark {
    font-family: 'Roboto', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--ott-pink);
    line-height: 1;
}

.ott-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ott-logo__line {
    font-family: 'Roboto', sans-serif;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ott-ink);
}

/* Logo variant for dark (hero) backgrounds */
.ott-logo--light .ott-logo__mark {
    color: #ffffff;
}

.ott-logo--light .ott-logo__line {
    color: rgba(255,255,255,0.85);
}

/* ------------------------------------------------------------------
   4. Auth Navigation Bar
   ------------------------------------------------------------------ */
.auth-nav {
    background: var(--ott-white);
    border-bottom: 1px solid var(--ott-line);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 60px;
}

.auth-nav__right {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.auth-nav__hint {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--ott-muted);
}

/* ------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------ */

/* Primary — filled pink */
.btn-ott-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    background: var(--ott-pink);
    color: var(--ott-white);
    border: 1px solid var(--ott-pink);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
    line-height: 22px;
    height: 100%;
    min-width: 140px;
}

    .btn-ott-pink:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        /*box-shadow: 0 6px 20px rgba(224,24,131,.36);*/
        color: var(--ott-white);
    }

    .btn-ott-pink.btn-block {
        width: 100%;
    }

    .btn-ott-pink.btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 8px;
    }

/* Outlined — pink border */
.btn-ott-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.45rem 1.125rem;
    background: transparent;
    color: var(--ott-pink);
    border: 1.5px solid var(--ott-pink);
    border-radius: 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.btn-ott-outline-grey {
    background: #fff !important;
    border: 1px solid #d9dce7;
    min-width: 140px;
    color: #000;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
    line-height: 22px;
    padding: 0.7rem 1.75rem;
}

.btn-ott-outline:hover {
    background: var(--ott-pink-light);
    color: var(--ott-pink-dark);
}

/* Ghost — dark/gray outline */
.btn-ott-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.45rem 1.125rem;
    background: transparent;
    color: var(--ott-ink);
    border: 1.5px solid var(--ott-line);
    border-radius: 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

    .btn-ott-ghost:hover {
        border-color: var(--ott-muted-light);
        background: var(--ott-bg);
        color: var(--ott-ink);
    }

/* Google SSO */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--ott-white);
    border: 1.5px solid var(--ott-line);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ott-ink);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-decoration: none;
}

    .btn-google:hover {
        border-color: #bcc0d4;
        box-shadow: var(--ott-shadow-sm);
        color: var(--ott-ink);
    }

.btn-google__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------
   6. Hero / Banner
   ------------------------------------------------------------------ */
.auth-hero {
    background: var(--hero-gradient);
    padding: 2.75rem 2rem 7.5rem;
    position: relative;
    overflow: hidden;
}

    /* Dot-grid overlay */
    .auth-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.045) 1px, transparent 0);
        background-size: 26px 26px;
        pointer-events: none;
    }

/* Slim strip variant — forgot password page */
.auth-hero--strip {
    padding: 2.5rem 2rem 5.5rem;
}

/* Centered text variant */
.auth-hero--centered {
    text-align: center;
}

.auth-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 0.75rem;
}

.auth-hero__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--ott-white);
    margin-bottom: 0.625rem;
    line-height: 1.15;
}

.auth-hero__subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.18rem;
    color: rgba(255,255,255,.9);
    max-width: 400px;
    margin-bottom: 0;
    line-height: 1.4;
}

.auth-hero__subtitle--center {
    margin-left: auto;
    margin-right: auto;
}

/* Decorative blobs */
.auth-hero__blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

.auth-hero__blob--1 {
    width: 280px;
    height: 280px;
    bottom: -90px;
    right: -60px;
}

.auth-hero__blob--2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 130px;
}

/* ------------------------------------------------------------------
   7. Welcome Page — Confetti (CSS box shapes + character items)
   ------------------------------------------------------------------ */
.confetti-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Base — all confetti items are absolutely positioned inline-blocks */
.confetti-item {
    position: absolute;
    display: inline-block;
    pointer-events: none;
    line-height: 1;
}

/* ── BOX SHAPES (empty spans) ── */

/* Pink ribbon strips */
.confetti-item--1 {
    top: 13%;
    left: 5%;
    width: 24px;
    height: 7px;
    background: var(--ott-pink);
    border-radius: 4px;
    transform: rotate(-30deg);
    opacity: 0.85;
}

.confetti-item--2 {
    top: 65%;
    left: 6%;
    width: 20px;
    height: 6px;
    background: var(--ott-pink);
    border-radius: 3px;
    transform: rotate(18deg);
    opacity: 0.75;
}

.confetti-item--3 {
    top: 10%;
    right: 28%;
    width: 20px;
    height: 6px;
    background: var(--ott-pink);
    border-radius: 3px;
    transform: rotate(42deg);
    opacity: 0.8;
}

.confetti-item--4 {
    top: 55%;
    right: 5%;
    width: 22px;
    height: 7px;
    background: var(--ott-pink);
    border-radius: 4px;
    transform: rotate(-28deg);
    opacity: 0.8;
}

/* Teal ribbon strips */
.confetti-item--5 {
    top: 22%;
    right: 14%;
    width: 22px;
    height: 7px;
    background: #44d4c2;
    border-radius: 4px;
    transform: rotate(-18deg);
    opacity: 0.75;
}

.confetti-item--6 {
    top: 62%;
    left: 7%;
    width: 18px;
    height: 6px;
    background: #44d4c2;
    border-radius: 3px;
    transform: rotate(28deg);
    opacity: 0.7;
}

/* Circle outlines */
.confetti-item--7 {
    top: 17%;
    left: 8%;
    width: 15px;
    height: 15px;
    border: 2px solid var(--ott-pink);
    border-radius: 50%;
    background: transparent;
    opacity: 0.75;
}

.confetti-item--8 {
    top: 45%;
    left: 28%;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: transparent;
    opacity: 0.65;
}

.confetti-item--9 {
    top: 8%;
    left: 38%;
    width: 11px;
    height: 11px;
    border: 2px solid var(--ott-yellow);
    border-radius: 50%;
    background: transparent;
    opacity: 0.75;
}

.confetti-item--10 {
    top: 7%;
    right: 7%;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: transparent;
    opacity: 0.65;
}

/* Yellow diamond squares */
.confetti-item--11 {
    top: 14%;
    left: 24%;
    width: 10px;
    height: 10px;
    background: var(--ott-yellow);
    transform: rotate(45deg);
    opacity: 0.85;
}

.confetti-item--12 {
    top: 25%;
    right: 22%;
    width: 10px;
    height: 10px;
    background: var(--ott-yellow);
    transform: rotate(45deg);
    opacity: 0.8;
}

/* Teal small squares */
.confetti-item--13 {
    top: 28%;
    left: 10%;
    width: 10px;
    height: 10px;
    background: #44d4c2;
    transform: rotate(22deg);
    opacity: 0.75;
}

.confetti-item--14 {
    top: 57%;
    right: 13%;
    width: 9px;
    height: 9px;
    background: #44d4c2;
    transform: rotate(30deg);
    opacity: 0.7;
}

/* Small dots */
.confetti-item--19 {
    top: 32%;
    left: 5%;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    opacity: 0.7;
}

.confetti-item--20 {
    top: 72%;
    right: 22%;
    width: 6px;
    height: 6px;
    background: var(--ott-pink);
    border-radius: 50%;
    opacity: 0.75;
}

/* ── CHARACTER SHAPES (spans contain text: + or ◆) ── */
.confetti-item--15 {
    top: 38%;
    left: 15%;
    color: rgba(255,255,255,.65);
    font-size: 18px;
    font-weight: 900;
    opacity: 0.75;
}

.confetti-item--16 {
    top: 12%;
    right: 18%;
    color: var(--ott-yellow);
    font-size: 16px;
    font-weight: 900;
    opacity: 0.8;
}

.confetti-item--17 {
    top: 8%;
    right: 21%;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 900;
    opacity: 0.7;
}

.confetti-item--18 {
    top: 30%;
    left: 34%;
    color: #44d4c2;
    font-size: 15px;
    font-weight: 900;
    opacity: 0.8;
}

/* ------------------------------------------------------------------
   8. Browser / Device Mockup
   ------------------------------------------------------------------ */
.browser-frame {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
    max-width: 340px;
    margin-left: auto;
}

.browser-frame__bar {
    background: rgba(255,255,255,.16);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-frame__dots {
    display: flex;
    gap: 5px;
}

.browser-frame__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
}

.browser-frame__url {
    flex: 1;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    height: 15px;
}

.browser-frame__screen {
    padding: 0.875rem;
    background: rgba(255,255,255,.05);
    min-height: 180px;
}

/* Mini UI inside mockup */
.mini-ui__header {
    background: linear-gradient(90deg, rgba(224,24,131,.55), rgba(75,42,160,.55));
    border-radius: 5px;
    height: 32px;
    margin-bottom: 9px;
}

.mini-ui__card {
    background: rgba(255,255,255,.14);
    border-radius: 6px;
    height: 48px;
    margin-bottom: 7px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-ui__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(224,24,131,.65), rgba(75,42,160,.65));
    flex-shrink: 0;
}

.mini-ui__lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-ui__line {
    background: rgba(255,255,255,.32);
    border-radius: 3px;
    height: 7px;
}

.mini-ui__line--short {
    width: 50%;
}

.mini-ui__badge {
    background: rgba(18,169,119,.5);
    border-radius: 10px;
    height: 16px;
    width: 38px;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------
   9. Auth Body (white/light section below hero)
   ------------------------------------------------------------------ */
.auth-body {
    background: var(--ott-bg);
    padding: 0 1rem 3rem;
    margin-top: 50px;
}

/* Variant with no top padding — for forgot password overlap */
.auth-body--flush {
    padding-top: 0;
}

/* ------------------------------------------------------------------
   10. Auth Form Card
   ------------------------------------------------------------------ */
.auth-card {
    background: var(--ott-white);
    border-radius: var(--ott-radius-lg);
    box-shadow: var(--ott-shadow-md);
    padding: 2rem 4rem;
}

.auth-card__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 1.25rem;
}

/* OR divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ott-muted-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 1rem 0;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--ott-line);
    }

/* ------------------------------------------------------------------
   11. Form Controls
   ------------------------------------------------------------------ */
.form-label-ott {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ott-ink);
    margin-bottom: 0.375rem;
}

    .form-label-ott .req {
        color: var(--ott-pink);
        margin-left: 2px;
    }

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ott-muted-light);
    font-size: 0.875rem;
    pointer-events: none;
}

.input-icon-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ott-muted-light);
    font-size: 0.875rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 2px 4px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.form-control-ott, .form-control-ott-mobile {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.375rem;
    border: 1.5px solid var(--ott-line);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: var(--ott-ink);
    background: var(--ott-white);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    appearance: none;
    line-height: 22px;
}

    .form-control-ott::placeholder {
        color: #b0b4cc;
    }

    .form-control-ott:focus {
        border-color: var(--ott-purple-mid);
        box-shadow: 0 0 0 3px rgba(107,53,184,.1);
    }

.has-right-icon .form-control-ott {
    padding-right: 2.5rem;
}

/* Remember row */
.auth-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.375rem 0 1rem;
}

.auth-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8375rem;
    font-weight: 400;
    color: var(--ott-muted);
    cursor: pointer;
    margin: 0;
}

    .auth-check-label input[type="checkbox"] {
        accent-color: var(--ott-pink);
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

.auth-forgot-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ott-pink);
}

    .auth-forgot-link:hover {
        color: var(--ott-pink-dark);
    }

/* "Your data is safe" note */
.safe-note, .free-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0.875rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    color: var(--ott-muted-light);
    line-height: 1.5;
}

.safe-note__icon, .free-note__icon {
    color: var(--ott-muted-light);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Helper text */
.auth-helper-text {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8375rem;
    color: var(--ott-muted);
    margin-top: 1rem;
}

/* Back link — pink text, centred */
.auth-back-link {
    display: block;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ott-pink);
    margin-top: 1.125rem;
}

    .auth-back-link:hover {
        color: var(--ott-pink-dark);
    }

/* ------------------------------------------------------------------
   12. Trust Strip
   ------------------------------------------------------------------ */
.trust-strip {
    /*border-top: 1px solid var(--ott-line);*/
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    font-weight: 400;
    color: var(--ott-muted-light);
}

.trust-strip__icon {
    font-size: 0.875rem;
    color: var(--ott-muted-light);
}

/* ------------------------------------------------------------------
   13. "New to OTT?" Panel
   ------------------------------------------------------------------ */
.new-to-ott {
    background: var(--ott-purple-soft);
    border: 1px solid rgba(107,53,184,.14);
    border-radius: var(--ott-radius-lg);
    padding: 2rem;
    height: 100%;
}

.new-to-ott__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--ott-purple) 0%, var(--ott-purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ott-white);
    font-size: 1.375rem;
    margin-bottom: 1.125rem;
}

.new-to-ott__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 0.4rem;
}

.new-to-ott__subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ott-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.new-to-ott__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.new-to-ott__feature {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ott-ink);
    padding: 0.3rem 0;
}

.new-to-ott__check {
    color: var(--ott-pink);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.875rem;
}

/* ------------------------------------------------------------------
   14. Registration — Step Progress
   ------------------------------------------------------------------ */
.register-steps {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.register-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.register-step__circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--ott-line);
    background: var(--ott-white);
    color: var(--ott-muted);
    flex-shrink: 0;
    transition: all 0.2s;
}

.register-step--active .register-step__circle {
    background: var(--ott-pink);
    border-color: var(--ott-pink);
    color: var(--ott-white);
}

.register-step--done .register-step__circle {
    background: var(--ott-green);
    border-color: var(--ott-green);
    color: var(--ott-white);
}

.register-step__label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--ott-muted);
    white-space: nowrap;
}

.register-step--active .register-step__label {
    color: var(--ott-pink);
    font-weight: 700;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: var(--ott-line);
    min-width: 20px;
}

/* Plain input — no left icon, standard left padding */
.form-control-ott--plain {
    padding-left: 1rem;
}

/* Registration form subtitle */
.reg-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ott-muted);
    margin-bottom: 1.25rem;
}

/* Password hint text */
.pwd-hint {
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    font-weight: 400;
    color: var(--ott-muted-light);
    line-height: 1.45;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Bottom row: free note left, Continue button right */
/*.reg-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.5rem;
}*/

/* Inline free note */
.free-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8375rem;
}

.free-note__icon {
    color: var(--ott-muted-light);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.free-note__title {
    font-weight: 700;
    color: var(--ott-ink);
    display: block;
}

.free-note__text {
    font-size: 0.775rem;
    font-weight: 400;
    color: var(--ott-muted);
    display: block;
}

/* Required note */
.req-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    color: var(--ott-muted-light);
    margin-bottom: 1.25rem;
}

    .req-note .req {
        color: var(--ott-pink);
    }

/* Free badge */
.free-badge {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: rgba(18,169,119,.07);
    border: 1px solid rgba(18,169,119,.2);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: var(--ott-ink);
    margin-top: 0.875rem;
    line-height: 1.5;
}

.free-badge__icon {
    color: var(--ott-green);
    font-size: 0.9375rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Footer note */
.reg-footer {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    color: var(--ott-ink);
    margin-top: 1.25rem;
}

    .reg-footer a {
        font-weight: 500;
        color: var(--ott-pink);
    }

        .reg-footer a:hover {
            color: var(--ott-pink);
        }

/* ------------------------------------------------------------------
   15. Forgot Password — Strip + card straddling the two sections
   ------------------------------------------------------------------ */

/* Fixed-height purple strip */
.forgot-strip {
    background: var(--hero-gradient);
    height: 210px;
    position: relative;
    overflow: hidden;
}

    /* Dot-grid overlay on strip */
    .forgot-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.05) 1px, transparent 0);
        background-size: 26px 26px;
        pointer-events: none;
    }

/* Decorative blobs inside strip */
.forgot-strip__blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}

.forgot-strip__blob--left {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
}

.forgot-strip__blob--right {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -60px;
}

/* Light-gray body below the strip */
.forgot-body {
    background: var(--ott-bg);
    padding: 0 1rem 3rem;
    min-height: 320px;
}

/* White card — pulled up to straddle strip + body boundary */
.forgot-card {
    background: var(--ott-white);
    border-radius: var(--ott-radius-lg);
    box-shadow: var(--ott-shadow-lg);
    padding: 2.5rem 2.25rem 2rem;
    text-align: center;
    max-width: 520px;
    width: 100%;
    margin: -160px auto 0;
    position: relative;
    z-index: 10;
}

/* Lock icon — gray outline circle, pink icon */
.forgot-card__lock {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid var(--ott-line);
    background: var(--ott-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.625rem;
    color: var(--ott-pink);
}

.forgot-card__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 0.625rem;
}

.forgot-card__text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ott-muted);
    line-height: 1.6;
    margin-bottom: 1.625rem;
}

.forgot-card .form-group {
    text-align: left;
}

/* ------------------------------------------------------------------
   16. Welcome Page — Avatar & Section Title
   ------------------------------------------------------------------ */
.welcome-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 3px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin: 0 auto 1rem;
    color: var(--ott-white);
}

.section-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ott-ink);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------------
   17. Welcome Cards Wrapper & Action Items
   ------------------------------------------------------------------ */

/* Single white card wrapping all 4 action columns + button */
.welcome-cards-wrap {
    background: var(--ott-white);
    border-radius: var(--ott-radius-lg);
    box-shadow: var(--ott-shadow-sm);
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
}

/* Individual action item — no border, transparent */
.action-card {
    background: transparent;
    border: none;
    padding: 0.75rem 0.75rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s;
}

    .action-card:hover {
        transform: translateY(-2px);
        box-shadow: none;
    }

.action-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.875rem;
}

.action-card__icon--purple {
    background: var(--ott-purple-soft);
    color: var(--ott-purple-mid);
}

.action-card__icon--pink {
    background: var(--ott-pink-light);
    color: var(--ott-pink);
}

.action-card__icon--green {
    background: rgba(18,169,119,.1);
    color: var(--ott-green);
}

.action-card__icon--orange {
    background: rgba(255,152,0,.1);
    color: #e67e00;
}

.action-card__title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 0.375rem;
}

.action-card__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--ott-muted);
    line-height: 1.5;
    margin-bottom: 0.875rem;
    min-height: 39px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.action-card__link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--ott-pink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s;
}

    .action-card__link:hover {
        color: var(--ott-pink-dark);
        gap: 8px;
    }

.welcome-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ------------------------------------------------------------------
   18. Sign In Page — Split Card Layout
   ------------------------------------------------------------------ */
.signin-card {
    background: var(--ott-white);
    border-radius: var(--ott-radius-lg);
    box-shadow: var(--ott-shadow-md);
    overflow: hidden;
    position: relative;
}

.signin-split {
    display: flex;
    align-items: stretch;
    min-height: 440px;
}

/* Left — form column */
.signin-form {
    flex: 0 0 50%;
    padding: 3rem 4rem;
    /*border-right: 1px solid var(--ott-line);*/
}

.signin-form__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 1.25rem;
}

/* Centre — vertical "or" separator */
.signin-or {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
    padding: 2rem 0;
    position: relative;
}

.signin-or__line {
    flex: 1;
    width: 1px;
    background: var(--ott-line);
}

.signin-or__badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--ott-line);
    background: var(--ott-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    margin: 8px 0;
    position: relative;
    z-index: 1;
}

/* Right — New to OTT panel */
.signin-panel {
    flex: 1;
    padding: 3rem 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.signin-panel__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid var(--ott-line);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ott-pink);
    font-size: 1.5rem;
    margin-bottom: 1.125rem;
}

.signin-panel__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ott-ink);
    margin-bottom: 0.5rem;
}

.signin-panel__subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.800rem;
    font-weight: 500;
    color: var(--ott-ink);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.signin-panel__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    width: 100%;
}

.signin-panel__feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.800rem;
    font-weight: 500;
    color: var(--ott-ink);
    padding: 0.3rem 0;
}

.signin-panel__check {
    color: var(--ott-pink);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Input icon on RIGHT side */
.input-wrap--right .form-control-ott {
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.input-wrap--right .input-icon {
    left: auto;
    right: 12px;
}

/* "Your data is safe" — pink tinted bg */
.safe-note, .free-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(224,24,131,.06);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
}

.safe-note__icon, .free-note__icon {
    color: var(--ott-pink);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.safe-note__title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8375rem;
    font-weight: 700;
    color: var(--ott-ink);
    display: block;
    margin-bottom: 2px;
}

.safe-note__text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.775rem;
    font-weight: 400;
    color: var(--ott-muted);
    display: block;
}

/* ------------------------------------------------------------------
   19. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 767px) {
    .auth-hero {
        padding: 2rem 1.25rem 2.5rem;
    }

    .auth-hero__title {
        font-size: 1.875rem;
    }

    .auth-body {
        padding: 1.5rem 0.875rem 2.5rem;
    }

    .auth-card {
        padding: 1.5rem 1.25rem;
    }

    .auth-nav {
        padding: 0.625rem 1rem;
    }

    .auth-nav__hint {
        display: none;
    }

    .browser-frame {
        display: none;
    }

    .forgot-card {
        margin-top: -2.5rem;
        padding: 2rem 1.25rem;
    }

    .register-step__label {
        display: none;
    }

    /* Sign in split — stack on mobile */
    .signin-split {
        flex-direction: column;
    }

    .signin-form {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--ott-line);
        padding: 1.75rem 1.25rem;
    }

    .signin-or {
        flex-direction: row;
        width: auto;
        height: 40px;
        padding: 0 1.25rem;
    }

    .signin-or__line {
        flex: 1;
        width: auto;
        height: 1px;
        background: var(--ott-line);
    }

    .signin-panel {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .auth-hero__title {
        font-size: 1.625rem;
    }

    .trust-strip {
        gap: 1.25rem;
    }

    .ott-logo__mark {
        font-size: 1.6rem;
    }
}
