/* ============================================================
   LOGIN PAGE
   ============================================================ */

.lp-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.header {
  display: none;
}

.footer {
  display: none;
}

/* LEFT PANEL */
.lp-left {
    background: linear-gradient(160deg, #0B2E33 0%, #1a4a52 45%, #4F7C82 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 56px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.lp-left::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(184,227,233,0.08);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.lp-left::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(79,124,130,0.12);
    bottom: -60px;
    left: -100px;
    pointer-events: none;
}

.lp-left-inner {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.lp-tagline {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.lp-tagline em {
    color: #B8E3E9;
    font-style: normal;
}

.lp-desc {
    font-size: 15px;
    color: rgba(184,227,233,0.65);
    line-height: 1.7;
    max-width: 380px;
}

.lp-illustration {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 280px;
    width:100%;
}

.lp-illustration svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* SVG ANIMATIONS */
.lp-svg-float1 {
    animation: lp-float1 4s ease-in-out infinite;
    transform-origin: 295px 58px;
}

.lp-svg-float2 {
    animation: lp-float2 5s ease-in-out infinite;
    transform-origin: 82px 270px;
}

.lp-svg-toast {
    animation: lp-slidein 6s ease-in-out infinite;
}

.lp-svg-pulse {
    animation: lp-pulse 3s ease-out infinite;
    transform-origin: 242px 152px;
}

.lp-svg-pulse2 {
    animation: lp-pulse 3s ease-out infinite 0.5s;
    transform-origin: 242px 152px;
}

@keyframes lp-float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes lp-float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes lp-slidein {
    0%, 100% { transform: translateX(0px); opacity: 1; }
    40% { transform: translateX(6px); opacity: 0.8; }
    60% { transform: translateX(6px); opacity: 0.8; }
}

@keyframes lp-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* STATS */
.lp-stats {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.lp-stat-num {
    font-size: 44px;
    font-weight: 800;
    color: #B8E3E9;
}

.lp-stat-lbl {
    font-size: 16px;
    color: rgba(184, 227, 233, 0.67);
    margin-top: 3px;
    font-weight: 600;
}

/* RIGHT PANEL */
.lp-right {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.lp-form-wrap {
    width: 100%;
    max-width: 80%;
}

.lp-back-btn {
  display: flex;
  justify-content: flex-end;
}

.lp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #BAD8DC;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
    background: #3c6a71;
    padding: 10px 25px;
    border-radius: 8px;
}

.lp-back-link:hover {
    color: #4F7C82;
}

.lp-title {
    font-size: 28px;
    font-weight: 800;
    color: #0B2E33;
    margin-bottom: 6px;
}

.lp-subtitle {
    font-size: 14px;
    color: #6b8a8e;
    margin-bottom: 32px;
}

.lp-subtitle a {
    color: #4F7C82;
    font-weight: 700;
    text-decoration: none;
}

.lp-subtitle a:hover {
    text-decoration: underline;
}

/* ALERT */
.lp-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.lp-alert.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

/* LOADING */
.lp-loading {
    font-size: 13px;
    color: #4F7C82;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

/* FIELDS */
.lp-field {
    margin-bottom: 20px;
}

.lp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0B2E33;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.lp-input-wrap {
    position: relative;
}

.lp-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1.5px solid #e0eaf0;
    border-radius: 12px;
    font-size: 14px;
    color: #0B2E33;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.lp-input:focus {
    border-color: #4F7C82;
    background: #fff;
}

.lp-input--pw {
    padding-right: 44px;
}

.lp-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #93B1B5;
    display: flex;
    pointer-events: none;
}

.lp-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #93B1B5;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.lp-eye-btn:hover {
    color: #4F7C82;
}

/* OPTIONS ROW */
.lp-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lp-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b8a8e;
    cursor: pointer;
}

.lp-remember input {
    width: 15px;
    height: 15px;
    accent-color: #4F7C82;
    cursor: pointer;
}

.lp-forgot {
    font-size: 13px;
    color: #4F7C82;
    font-weight: 600;
    text-decoration: none;
}

.lp-forgot:hover {
    text-decoration: underline;
}

/* TURNSTILE */
.lp-turnstile {
    margin-bottom: 20px;
}

/* SUBMIT BUTTON */
.lp-btn {
    width: 100%;
    padding: 14px;
    background: #0B2E33;
    color: #B8E3E9;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.lp-btn:hover {
    background: #1a4a52;
    transform: translateY(-1px);
}

.lp-btn:active {
    transform: translateY(0);
}

/* BOTTOM LINKS */
.lp-form-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #6b8a8e;
    flex-wrap: wrap;
}

.lp-form-links a {
    color: #4F7C82;
    font-weight: 600;
    text-decoration: none;
}

.lp-form-links a:hover {
    text-decoration: underline;
}

.lp-sep {
    color: #e0eaf0;
}

/* ============================================================
   LOGIN RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {

    .lp-tagline {
        font-size: 42px;
    }

    .lp-stat-num {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .lp-wrap {
        grid-template-columns: 1fr;
        min-height: 100vh;
        background: linear-gradient(150deg, #071e22 0%, #0B2E33 30%, #1e5f6b 65%, #4F7C82 100%);
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 40px 20px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
        align-content: center;
        align-items: center;
    }

    .lp-wrap::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(184,227,233,0.07);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .lp-wrap::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(79,124,130,0.1);
        bottom: -60px;
        left: -80px;
        pointer-events: none;
    }

    .lp-left {
        display: none;
    }

    .lp-right {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.3);
        padding: 40px 32px;
        width: 100%;
        max-width: 480px;
        height: auto;
        min-height: auto;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .lp-wrap {
        padding: 24px 16px;
    }

    .lp-right {
        padding: 32px 20px;
        align-items: flex-start;
        border-radius: 20px;
    }

    .lp-title {
        font-size: 24px;
    }

    .lp-options-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .lp-tagline {
        font-size: 32px;
    }
}