    .pw-page {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px 24px;
        box-sizing: border-box;
    }

    .pw-card {
        width: 100%;
        max-width: 420px;
        background: #ffffff;
        border-radius: 24px;
        padding: 40px 36px 32px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pw-mascot img {
        width: 130px;
        height: auto;
        margin-bottom: 20px;
    }

    .pw-title {
        font-size: 1.7rem;
        font-weight: 800;
        color: #111827;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .pw-subtitle {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .pw-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pw-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .pw-field label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #374151;
    }

    .pw-input-wrap {
        position: relative;
        width: 100%;
    }

    .pw-input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 1rem;
    }

    .pw-input-wrap input {
        width: 100%;
        padding: 14px 16px 14px 42px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        outline: none;
        background: #f9fafb;
        box-sizing: border-box;
    }

    .pw-input-wrap input:focus {
        border-color: #4f46e5;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    }

    .pw-btn {
        width: 100%;
        padding: 15px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1rem;
        background: #4f46e5;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
    }

    .pw-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
    }

    .pw-btn:disabled {
        opacity: 0.6;
        transform: none;
        cursor: not-allowed;
    }

    .pw-divider {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        color: #9ca3af;
        font-size: 0.85rem;
        margin: 22px 0 6px;
    }

    .pw-divider::before,
    .pw-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }

    .pw-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
    }

    .pw-link {
        font-size: 0.9rem;
        color: #4f46e5;
        font-weight: 600;
        transition: opacity 0.2s;
    }

    .pw-link:hover { opacity: 0.8; }

    .pw-terms {
        font-size: 0.75rem;
        color: #9ca3af;
        line-height: 1.5;
        margin-top: 16px;
    }

    @media (max-width: 480px) {
        .pw-card { padding: 32px 22px 28px; }
        .pw-title { font-size: 1.4rem; }
    }
