﻿@charset "utf-8";

/* =========================================================
   AIZaac Find Information / Account Recovery
   Seaside glass style
========================================================= */

html:has(.ifind-page),
body:has(.ifind-page) {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: #edf7ff;
    overflow-x: hidden;
}

.ifind-page,
.ifind-page * {
    box-sizing: border-box;
}

.ifind-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 145px 32px 64px;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    color: #111827;
    font-family: 'Inter', 'Pretendard', 'Noto Sans KR', Arial, sans-serif;

    /*
       Fallback background.
       The inherited .az-hero script will replace .az-hero__bg with main01.jpg ~ main24.jpg.
    */
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.72) 0%,
            rgba(255,255,255,0.44) 46%,
            rgba(255,255,255,0.16) 100%
        ),
        url("/iBoard/Theme/AIZAAC/images/main08.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* Time-based background target */
.ifind-bg.az-hero__bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    display: block;
    background-image: url("/iBoard/Theme/AIZAAC/images/main08.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    opacity: 1;
    filter: brightness(1.04) saturate(1.06);
    pointer-events: none;
    transition: background-image .45s ease, filter .45s ease;
}

.ifind-shade {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.70) 0%,
            rgba(255,255,255,0.46) 44%,
            rgba(255,255,255,0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.42)
        ),
        radial-gradient(circle at 18% 84%, rgba(124,58,237,0.14), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(37,99,235,0.12), transparent 32%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Time mode from inherited main script */
.ifind-page.az-hero--morning .ifind-bg {
    filter: brightness(1.06) saturate(1.03);
}

.ifind-page.az-hero--afternoon .ifind-bg {
    filter: brightness(1.03) saturate(1.05);
}

.ifind-page.az-hero--evening .ifind-bg {
    filter: brightness(.98) saturate(1.08);
}

.ifind-page.az-hero--night .ifind-bg {
    filter: brightness(.76) saturate(1.04);
}

.ifind-page.az-hero--night .ifind-shade {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.82) 0%,
            rgba(255,255,255,0.62) 46%,
            rgba(255,255,255,0.34) 100%
        ),
        radial-gradient(circle at 18% 84%, rgba(124,58,237,0.22), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(37,99,235,0.20), transparent 32%);
}

/* =========================================================
   Main Layout
========================================================= */

.ifind-shell {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100vw - 64px));
    max-width: 1080px;
    margin: 0 auto;
}

.ifind-card {
    position: relative;
    width: 100%;
    min-height: 570px;
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
    gap: 26px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* =========================================================
   Left Visual Panel
========================================================= */

.ifind-side {
    position: relative;
    min-height: 570px;
    padding: 42px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42)),
        radial-gradient(circle at 12% 14%, rgba(124,58,237,0.14), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(6,182,212,0.16), transparent 34%);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow:
        0 26px 80px rgba(37,99,235,0.14),
        inset 0 1px 0 rgba(255,255,255,0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.ifind-side::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 92px;
    width: 310px;
    height: 220px;
    border-radius: 36px;
    background: rgba(255,255,255,0.24);
    border: 1px solid rgba(255,255,255,0.54);
    transform: rotate(-10deg);
}

.ifind-side::after {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(124,58,237,0.16);
    filter: blur(8px);
}

.ifind-side-inner {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ifind-eyebrow {
    width: fit-content;
    margin: 0 0 24px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #2563eb;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 14px 36px rgba(37,99,235,0.09);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ifind-eyebrow::before {
    content: "✦";
    margin-right: 8px;
    color: #7c3aed;
}

.ifind-title {
    margin: 0;
    color: #111827;
    font-size: clamp(42px, 5vw, 50px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.07em;
}

.ifind-title span {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #2563eb 56%, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ifind-desc {
    max-width: 440px;
    margin: 24px 0 0;
    color: #405069;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
}

/* =========================================================
   Steps
========================================================= */

.ifind-steps {
    margin-top: 44px;
    display: grid;
    gap: 14px;
}

.ifind-step {
    min-height: 82px;
    padding: 18px;
    border-radius: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow:
        0 18px 42px rgba(37,99,235,0.08),
        inset 0 1px 0 rgba(255,255,255,0.84);
}

.ifind-step-no {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4);
    box-shadow: 0 14px 28px rgba(37,99,235,0.20);
    font-size: 12px;
    font-weight: 950;
}

.ifind-step-text {
    color: #334155;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 750;
    margin-top: 6px;
}

/* =========================================================
   Right Main Card
========================================================= */

.ifind-main {
    position: relative;
    min-height: 570px;
    padding: 42px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.66)),
        radial-gradient(circle at 100% 0%, rgba(124,58,237,0.10), transparent 34%);
    border: 1px solid rgba(255,255,255,0.84);
    box-shadow:
        0 26px 80px rgba(37,99,235,0.15),
        inset 0 1px 0 rgba(255,255,255,0.90);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ifind-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.ifind-header-copy {
    min-width: 0;
}

.ifind-header-label {
    width: fit-content;
    margin: 0 0 12px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #4f46e5;
    background: rgba(238,242,255,0.88);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ifind-header h2 {
    margin: 0;
    color: #111827;
    font-size: 38px;
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -.055em;
}

.ifind-header p {
    display: block;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

/* =========================================================
   Icon
========================================================= */

.ifind-icon {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 56%, #06b6d4 100%);
    box-shadow:
        0 18px 36px rgba(37,99,235,0.24),
        inset 0 1px 0 rgba(255,255,255,0.40);
}

.ifind-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(124,58,237,0.34), rgba(6,182,212,0.28));
    filter: blur(12px);
    opacity: .55;
    z-index: -1;
}

.ifind-lock-shape {
    position: relative;
    display: block;
    width: 26px;
    height: 22px;
    border-radius: 7px;
    background: #ffffff;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8),
        0 8px 16px rgba(15,23,42,0.18);
}

.ifind-lock-shape::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -17px;
    width: 18px;
    height: 18px;
    transform: translateX(-50%);
    border: 4px solid #ffffff;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.ifind-lock-shape::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 5px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, #7c3aed, #2563eb);
}

/* =========================================================
   Form
========================================================= */

.ifind-form-card {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.64);
    border: 1px solid rgba(226,232,240,0.64);
    box-shadow:
        0 14px 34px rgba(37,99,235,0.06),
        inset 0 1px 0 rgba(255,255,255,0.82);
}

.ifind-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
}

.ifind-input-wrap {
    position: relative;
}

.ifind-email-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 17px;
    height: 13px;
    transform: translateY(-50%);
    border: 2px solid #7c3aed;
    border-radius: 4px;
    box-sizing: border-box;
    pointer-events: none;
}

.ifind-email-icon::before,
.ifind-email-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 9px;
    height: 2px;
    background: #7c3aed;
}

.ifind-email-icon::before {
    left: 0;
    transform: rotate(34deg);
    transform-origin: left center;
}

.ifind-email-icon::after {
    right: 0;
    transform: rotate(-34deg);
    transform-origin: right center;
}

.ifind-input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 48px;
    border: 1px solid rgba(203,213,225,0.86);
    border-radius: 18px;
    outline: none;
    background: rgba(255,255,255,0.82);
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.86),
        0 10px 24px rgba(37,99,235,0.05);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.ifind-input::placeholder {
    color: #94a3b8;
    font-weight: 650;
}

.ifind-input:focus {
    background: rgba(255,255,255,0.98);
    border-color: rgba(124,58,237,0.62);
    box-shadow:
        0 0 0 4px rgba(124,58,237,0.12),
        0 16px 34px rgba(37,99,235,0.12);
    transform: translateY(-1px);
}

.ifind-help {
    display: block;
    margin-top: 9px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 650;
}

.ifind-message {
    margin-top: 10px;
    min-height: 18px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 750;
}

.ifind-message.is-success {
    color: #047857;
}

.ifind-message.is-error {
    color: #dc2626;
}

.ifind-submit {
    width: 100%;
    height: 58px;
    margin-top: 18px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #2563eb 58%, #06b6d4);
    box-shadow:
        0 20px 38px rgba(37,99,235,0.26),
        inset 0 1px 0 rgba(255,255,255,0.28);
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}

.ifind-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 26px 48px rgba(37,99,235,0.32),
        inset 0 1px 0 rgba(255,255,255,0.34);
}

.ifind-submit:disabled {
    cursor: wait;
    opacity: .75;
}

.ifind-arrow {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(45deg);
    border-radius: 1px;
}

.ifind-footer {
    margin-top: 22px;
    text-align: center;
}

.ifind-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.ifind-footer a:hover {
    color: #2563eb;
    transform: translateX(-2px);
}

.ifind-back-arrow {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1366px), (max-height: 820px) {
    .ifind-page {
        padding: 125px 28px 42px;
    }

    .ifind-shell {
        width: min(980px, calc(100vw - 56px));
        max-width: 980px;
    }

    .ifind-card {
        min-height: 520px;
        gap: 22px;
    }

    .ifind-side,
    .ifind-main {
        min-height: 520px;
        padding: 34px;
    }

    .ifind-title {
        font-size: clamp(38px, 4.4vw, 56px);
    }

    .ifind-desc {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .ifind-steps {
        margin-top: 30px;
    }

    .ifind-step {
        min-height: 74px;
        padding: 15px;
    }

    .ifind-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 1024px) {
    .ifind-page {
        padding: 48px 24px 40px;
    }

    .ifind-shell {
        width: 100%;
        max-width: 760px;
    }

    .ifind-card {
        grid-template-columns: 1fr;
    }

    .ifind-side,
    .ifind-main {
        min-height: auto;
        padding: 34px 30px;
    }

    .ifind-side-inner {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .ifind-header {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .ifind-page {
        padding: 24px 16px 32px;
    }

    .ifind-card {
        gap: 16px;
    }

    .ifind-side,
    .ifind-main {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .ifind-title {
        font-size: 36px;
    }

    .ifind-header h2 {
        font-size: 30px;
    }

    .ifind-icon {
        width: 56px;
        height: 56px;
        border-radius: 19px;
    }
}